#Server Configuration [zhongcheng] server.port=8089 server.servlet.context-path=/xdrservice #server.address=0.0.0.0 server.tomcat.uri-encoding=UTF-8 server.error.include-message=always server.error.include-binding-errors=always #run.environment: dev|test|prod server.run.environment=prod # Syslog Server Configuration syslog.tcp.port=514 syslog.udp.port=514 syslog.max.frame.length=65536 syslog.buffer.size=1000 # InfluxDB 2.7 Configuration influxdb.url=http://10.11.2.141:8087 influxdb.token=_dTKzcUbYIKSo5jvLVExYki1L4wyuRKsm5XxB90CqYBzgu7GpQD-VCB4cHSd9XOhVQIBl5ke-XaL82JHsogW7Q== influxdb.org=influxdb influxdb.bucket=yelangbucket influxdb.batch.size=1000 influxdb.flush.interval=1000 influxdb.retry.attempts=3 influxdb.retry.delay=1000 # Application Configuration app.worker.threads=4 app.max.queue.size=10000 app.metrics.enabled=true #database Configuration spring.datasource.url=jdbc:postgresql://10.11.2.141:5432/ecosys spring.datasource.username=ecosys spring.datasource.password=wsYDPjrpNZPrkPrR spring.datasource.driver-class-name=org.postgresql.Driver # mybatis Configuration mybatis.mapper-locations=classpath:mapper/*.xml mybatis.type-aliases-package=com.common.entity #mybatis handler 类 mybatis.configuration.default-statement-timeout=30 mybatis.configuration.default-fetch-size=1000 mybatis.configuration.map-underscore-to-camel-case=true mybatis.type-handlers-package=com.Modules.etl.handler mybatis-plus.configuration.map-underscore-to-camel-case=true mybatis-plus.type-handlers-package=com.Modules.etl.handler # kafka Configuration spring.kafka.consumer.bootstrap-servers=10.11.2.142:9092 spring.kafka.consumer.group-id=agent-syslog-group spring.kafka.consumer.auto-offset-reset=latest spring.kafka.consumer.enable-auto-commit=true spring.kafka.consumer.auto-commit-interval=1000 spring.kafka.consumer.topic=agent-syslog-topic spring.kafka.consumer.max-poll-records=1000 spring.kafka.consumer.properties.max.poll.interval.ms=300000 spring.kafka.consumer.properties.session.timeout.ms=45000 #spring.kafka.consumer.key-deserializer: org.apache.kafka.common.serialization.StringDeserializer #spring.kafka.consumer.value-deserializer: org.apache.kafka.common.serialization.StringDeserializer spring.kafka.consumer.fetch-min-size= 1048576 spring.kafka.listener.ack-mode= manual spring.kafka.listener.concurrency= 2 spring.kafka.listener.type=batch # 定时任务配置 spring.task.scheduling.pool.size=10 # 日志配置 logging.level.com.common.schedule=INFO logging.level.com.common.service=INFO # 分区表检查配置 partition.check.tomorrow.enabled=true partition.check.future.days=7 partition.auto.create=true # 生产环境缓存配置 spring.redis.host=10.11.2.142 spring.redis.port=6379 # 密码(如果没有设置密码,可以省略) spring.redis.password=redis_edP6N6 spring.redis.database=0 spring.redis.timeout=5000 #spring.redis.password=${REDIS_PASSWORD:default_prod_password} spring.redis.lettuce.pool.max-active=20 spring.redis.lettuce.pool.max-wait=5000 spring.redis.lettuce.pool.max-idle=10 spring.redis.lettuce.pool.min-idle=5 # 生产环境缓存时间较长 spring.cache.redis.time-to-live=3600000 # 应用处理器配置 app.processor.thread-pool.core-pool-size=10 app.processor.thread-pool.max-pool-size=20 app.processor.thread-pool.queue-capacity=2000 app.processor.thread-pool.keep-alive-seconds=60 app.processor.batch-size=100 app.processor.process-timeout-ms=30000 # 配置 Elasticsearch # Elasticsearch连接地址 spring.elasticsearch.uris=http://192.168.1.174:9200 # 配置 Elasticsearch 用户名 spring.elasticsearch.username=CONTAINER_NAME # 配置 Elasticsearch 密码 spring.elasticsearch.password=t2NZCiajmdazxBrF # 连接超时时间 spring.elasticsearch.connection-timeout=10s # Socket 超时时间 spring.elasticsearch.socket-timeout=30s # ETL配置 etl.batch.page-size=1000 etl.batch.insert-batch-size=500 etl.schedule.cron=0 0 2 * * ?