1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- # 应用服务 WEB 访问端口 52云服务
- server:
- port: 19801
- knife4j:
- #开启生产环境屏蔽
- production: true
- minio:
- # 中心测
- endpoint: http://minio-idaas.middleware.svc.cluster.local:9000
- ak: AKIAIOSFODNN7EXAMPLE
- sk: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
- bucket: windmill
- dir: store/abnormal-sound/
- source-dir: store/abnormal-sound/source/
- spring:
- datasource:
- dynamic:
- primary: master
- datasource:
- #中心测
- master:
- type: com.alibaba.druid.pool.DruidDataSource
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://xdbmysql57-leader.middleware.svc.cluster.local:8436/iip_api_service?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8&allowMultiQueries=true
- username: root
- password: fbLfJZ1sFMAw
- #边缘测
- slave:
- type: com.alibaba.druid.pool.DruidDataSource
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://xdbmysql57-leader.middleware.svc.cluster.local:8436/iip_api_service?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8&allowMultiQueries=true
- username: root
- password: fbLfJZ1sFMAw
- druid:
- initial-size: 5
- min-idle: 5
- maxActive: 20
- # 配置获取连接等待超时的时间
- maxWait: 60000
- # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
- timeBetweenEvictionRunsMillis: 6000
- # 配置一个连接在池中最小生存的时间,单位是毫秒
- minEvictableIdleTimeMillis: 60000
- # 配置一个连接在池中最大生存的时间,单位是毫秒
- maxEvictableIdleTimeMillis: 900000
- servlet:
- multipart:
- max-file-size: 100MB
- max-request-size: 100MB
- data:
- redis:
- host: redis-single-master.middleware.svc.cluster.local
- port: 6379
- password: 12fbLfJZ1a3F
- database: 0
- timeout: 6000ms
- lettuce:
- pool:
- min-idle: 5
- max-idle: 10
- max-wait: -1ms
- max-active: 1000
- #异音算法接口
- vox:
- #vox服务地址
- # post-analysis-url: http://vox-model-service.vox-services.svc.cluster.local:8899/audio
- post-analysis-url: http://vox-model-service:8899/audio
- #视频流切片保存地址
- video-dir: /tmp
|