svr-redis.yml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. spring:
  2. # REDIS
  3. redis:
  4. database: 0 # Database index used by the connection factory.
  5. #password: # Login password of the redis server.
  6. timeout: 0 # Connection timeout in milliseconds.
  7. #sentinel:
  8. # master: # Name of Redis server.
  9. # nodes: # Comma-separated list of host:port pairs.
  10. pool:
  11. max-active: 8 # Max number of connections that can be allocated by the pool at a given time. Use a negative value for no limit.
  12. max-idle: 8 # Max number of "idle" connections in the pool. Use a negative value to indicate an unlimited number of idle connections.
  13. max-wait: -1 # Maximum amount of time (in milliseconds) a connection allocation should block before throwing an exception when the pool is exhausted. Use a negative value to block indefinitely.
  14. min-idle: 1 # Target for the minimum number of idle connections to maintain in the pool. This setting only has an effect if it is positive.
  15. datasource:
  16. driver-class-name: com.mysql.jdbc.Driver
  17. max-active: 20
  18. max-idle: 8
  19. min-idle: 8
  20. validation-query: SELECT 1
  21. test-on-borrow: true
  22. hystrix:
  23. threadpool:
  24. default:
  25. coreSize: 60 #并发执行的最大线程数,默认10
  26. maxQueueSize: 100 #LinkedBlockingQueue的最大队列数,默认-1,使用SynchronousQueue
  27. #queueSizeRejectionThreshold: 50 #配置该值后,即使maxQueueSize没有达到,达到queueSizeRejectionThreshold该值后,请求也会被拒绝
  28. ---
  29. spring:
  30. profiles: prod
  31. datasource:
  32. url: jdbc:mysql://192.168.210.3:3310/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
  33. username: healthcloud
  34. password: GP8Qz4qU
  35. redis:
  36. host: 192.168.50.82
  37. port: 6379
  38. password: q4YaQemf
  39. ehr-redis:
  40. mq:
  41. pubsub:
  42. publisherAppId: svr-redis
  43. responseTimeChannel: redis.cache.reponse-time