| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- 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://testeureka-internal.piaoquantv.com/eureka/
- spring:
- datasource:
- driver-class-name: com.mysql.jdbc.Driver
- url: jdbc:mysql://rm-bp1k5853td1r25g3n690.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
- data:
- mongodb:
- uri: mongodb://content_user:Content123&@s-bp15728065fa22a4.mongodb.rds.aliyuncs.com:3717,s-bp12258b064c3ef4.mongodb.rds.aliyuncs.com:3717/content_test
- logging:
- file:
- path: /datalog/weblog/${project.name}
- app:
- id: content-understanding
- apollo:
- bootstrap:
- enabled: true
- namespaces: application
- meta: http://testapolloconfig-internal.piaoquantv.com
- cacheDir: /datalog/apollo-cache-dir
- aliyun:
- log:
- logstore:
- action: action-log-test
- request: request-log-test
- result: result-log-test
- error: error-log-test
- topic:
- xxl:
- job:
- admin:
- addresses: http://xxl-job-test-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://videotest-internal.yishihui.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_test
- group: group_old_version_remain_video_understanding_test
- producer:
- endpoints: rmq-cn-vym47zv2i03-vpc.cn-hangzhou.rmq.aliyuncs.com:8080
- oldversion:
- topic: topic_old_version_remain_video_understanding_test
|