| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- spring:
- datasource:
- type: com.zaxxer.hikari.HikariDataSource
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://192.168.194.130:3306/ry-vue?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true
- username: root
- password: 123456
- hikari:
- connection-timeout: 30000
- validation-timeout: 5000
- minimum-idle: 10
- maximum-pool-size: 20
- idle-timeout: 600000
- max-lifetime: 900000
- keepaliveTime: 30000
- --- # snail-job 服务端配置
- snail-job:
- # 服务端节点IP(默认按照`NetUtil.getLocalIpStr()`)
- server-host:
- # 服务端端口号
- server-port: 17888
- # 合并日志默认保存天数
- merge-Log-days: 1
- # 合并日志默认的条数
- merge-Log-num: 500
- # 配置每批次拉取重试数据的大小
- retry-pull-page-size: 100
- # 配置日志保存时间(单位:天)
- log-storage: 7
- # bucket的总数量
- bucket-total: 128
- # Dashboard 任务容错天数
- summary-day: 7
- # 配置负载均衡周期时间
- load-balance-cycle-time: 10
- # 重试任务拉取的并行度
- retry-max-pull-parallel: 2
- --- # 监控中心配置
- spring.boot.admin.client:
- # 增加客户端开关
- enabled: true
- url: http://localhost:9090/admin
- instance:
- service-host-type: IP
- metadata:
- username: ${spring.boot.admin.client.username}
- userpassword: ${spring.boot.admin.client.password}
- username: @monitor.username@
- password: @monitor.password@
|