12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- server:
- port: 8080
- eureka:
- instance:
- prefer-ip-address: true #是否优先使用IP地址作为主机名的标识,默认false
- instance-id: ${spring.cloud.client.ip-address}:${spring.application.name}:${server.port} #注册到eureka上的唯一实例ID
- lease-renewal-interval-in-seconds: 10 #表示eureka client发送心跳给server端的频率,默认30
- lease-expiration-duration-in-seconds: 30 #表示eureka server至上一次收到client的心跳之后,等待下一次心跳的超时时间,在这个时间内若没收到下一次心跳,则将移除该instance,默认90
- client:
- registry-fetch-interval-seconds: 5 #定时从Eureka Server拉取服务注册信息的间隔时间
- serviceUrl:
- defaultZone: http://preeureka-internal.piaoquantv.com/eureka/
- spring:
- datasource:
- driver-class-name: com.mysql.jdbc.Driver
- url: jdbc:mysql://rm-bp1jjv3jv98133plv285-vpc-rw.mysql.rds.aliyuncs.com:3306/longvideo?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull
- username: wx2016_longvideo
- password: wx2016_longvideoP@assword1234
- type: com.zaxxer.hikari.HikariDataSource
- hikari:
- minimum-idle: 10
- maximum-pool-size: 20
- connection-test-query: SELECT 1
- redis:
- hostName: r-bp1oyhyx4mxgs6klyt561.redis.rds.aliyuncs.com
- port: 6379
- password: Wqsd@2019
- timeout: 1000
- lettuce:
- pool:
- max-active: 8
- max-wait: -1
- max-idle: 8
- min-idle: 0
- data:
- mongodb:
- uri: mongodb://content_user:Content123&@s-bp15728065fa22a4.mongodb.rds.aliyuncs.com:3717,s-bp12258b064c3ef4.mongodb.rds.aliyuncs.com:3717/content
- logging:
- file:
- path: /datalog/weblog/${project.name}
- app:
- id: content-understanding
- apollo:
- bootstrap:
- enabled: true
- namespaces: application
- meta: http://preapolloconfig-internal.piaoquantv.com
- cacheDir: /datalog/apollo-cache-dir
- aliyun:
- log:
- logstore:
- action: action-log-pre
- request: request-log-pre
- result: result-log-pre
- error: error-log-pre
- topic:
- xxl:
- job:
- admin:
- addresses: http://xxl-job-pre-internal.piaoquantv.com/xxl-job-admin
- accessToken:
- executor:
- appname: ${project.name}
- address:
- ip:
- port: 9999
- logpath: /datalog/weblog/${project.name}/xxl-job/
- logretentiondays: 30
- longvideoapi:
- getVideoBaseInfoUrl: http://videopre-internal.piaoquantv.com/longvideoapi/openapi/video/getBaseInfo
- rocketmq:
- consumer:
- endpoints: rmq-cn-vym47zv2i03-vpc.cn-hangzhou.rmq.aliyuncs.com:8080
- oldversion:
- topic: topic_old_version_remain_video_understanding_pre
- group: group_old_version_remain_video_understanding_pre
- producer:
- endpoints: rmq-cn-vym47zv2i03-vpc.cn-hangzhou.rmq.aliyuncs.com:8080
- oldversion:
- topic: topic_old_version_remain_video_understanding_pre
|