2023-01-14 21:02:18 +08:00
|
|
|
spring:
|
2023-01-14 20:47:43 +08:00
|
|
|
profiles:
|
|
|
|
active: dev
|
2023-01-14 21:02:18 +08:00
|
|
|
datasource:
|
|
|
|
name: x_retry
|
|
|
|
url: jdbc:mysql://localhost:3306/x_retry?useSSL=false&characterEncoding=utf8&useUnicode=true
|
|
|
|
username: root
|
|
|
|
password: root
|
|
|
|
type: com.zaxxer.hikari.HikariDataSource
|
|
|
|
driver-class-name: com.mysql.jdbc.Driver
|
|
|
|
hikari:
|
|
|
|
connection-timeout: 30000
|
|
|
|
minimum-idle: 5
|
|
|
|
maximum-pool-size: 20
|
|
|
|
auto-commit: true
|
|
|
|
idle-timeout: 30000
|
|
|
|
pool-name: x_retry
|
|
|
|
max-lifetime: 1800000
|
|
|
|
connection-test-query: SELECT 1
|
|
|
|
resources:
|
|
|
|
static-locations: classpath:admin/
|
|
|
|
mybatis-plus:
|
|
|
|
mapper-locations: classpath:/mapper/*.xml
|
|
|
|
typeAliasesPackage: com.x.retry.server.persistence.mybatis.po
|
|
|
|
global-config:
|
|
|
|
db-config:
|
|
|
|
field-strategy: NOT_EMPTY
|
|
|
|
capital-mode: false
|
|
|
|
logic-delete-value: 1
|
|
|
|
logic-not-delete-value: 0
|
|
|
|
configuration:
|
|
|
|
map-underscore-to-camel-case: true
|
|
|
|
cache-enabled: true
|
|
|
|
|
2023-01-14 19:56:12 +08:00
|
|
|
x-retry:
|
|
|
|
lastDays: 30 # 拉取重试数据的天数
|
|
|
|
retryPullPageSize: 100 # 拉取重试数据的每批次的大小
|
|
|
|
nettyPort: 1788 # 服务端netty端口
|
|
|
|
totalPartition: 32 # 重试和死信表的分区总数
|
2023-01-14 19:58:59 +08:00
|
|
|
limiter: 10
|
2023-01-14 21:02:18 +08:00
|
|
|
|
|
|
|
|