| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- logging:
- level:
- org.apache.flink.runtime.checkpoint: warn
- org.apache.flink.runtime.source.coordinator.SourceCoordinator: warn
- com.ververica.cdc.connectors.mysql.source.reader.MySqlSourceReader: warn
- flink:
- cdc:
- mysql:
- hostname: gz-cdb-of55khc9.sql.tencentcdb.com
- port: 23620
- databaseList: fs_hospital
- tableList: fs_hospital.fs_user
- username: root
- password: Rtyy_2023
- serverTimeZone: Asia/Shanghai
- startupOptions: latest # 可选值: latest, initial, specificOffset, timestamp
- checkpoint:
- interval: 3000 # 单位:毫秒
- parallelism:
- source: 1
- sink: 1
- # 开发环境配置
- server:
- # 服务器的HTTP端口,默认为 7011 store 7111
- port: 7015
- servlet:
- # 应用的访问路径
- context-path: /
- tomcat:
- # tomcat的URI编码
- uri-encoding: UTF-8
- # tomcat最大线程数,默认为200
- max-threads: 800
- # Tomcat启动初始化的线程数,默认值25
- min-spare-threads: 30
- # Spring配置
- spring:
- main:
- web-application-type: none
- # 资源信息
- messages:
- # 国际化资源文件路径
- basename: i18n/messages
- profiles:
- active: dev
- include: config
|