svr-pack-analyzer.yml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. spring:
  2. datasource:
  3. driver-class-name: com.mysql.jdbc.Driver
  4. max-active: 20
  5. max-idle: 8
  6. min-idle: 8
  7. validation-query: SELECT 1
  8. test-on-borrow: true
  9. # REDIS
  10. redis:
  11. database: 0 # Database index used by the connection factory.
  12. timeout: 0 # Connection timeout in milliseconds.
  13. #sentinel:
  14. # master: # Name of Redis server.
  15. # nodes: # Comma-separated list of host:port pairs.
  16. pool:
  17. 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.
  18. max-idle: 8 # Max number of "idle" connections in the pool. Use a negative value to indicate an unlimited number of idle connections.
  19. 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.
  20. 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.
  21. fast-dfs:
  22. connect-timeout: 10
  23. network-timeout: 60
  24. charset: ISO8859-1
  25. pool:
  26. init-size: 5
  27. max-size: 20
  28. wait-time: 500
  29. http:
  30. tracker-http-port: 80
  31. anti-steal-token: no
  32. secret-key: FastDFS1234567890
  33. eip:
  34. tenant: jkzl
  35. analyze:
  36. job:
  37. minSize: 10 #解析入库初始任务数
  38. maxSize: 10 #解析入库最大任务数
  39. cronExp: 0/1 * * * * ? #解析任务触发间隔表达式
  40. quality:
  41. orgCode : 1 #默认机构
  42. version: 59083976eebd #默认版本号
  43. cloud: medicalCloud #默认云平台code
  44. cloudName: 上饶医疗云 #默认云平台name
  45. elasticsearch:
  46. pool:
  47. init-size: 5
  48. max-size: 10
  49. ---
  50. spring:
  51. profiles: prod
  52. datasource:
  53. url: jdbc:mysql://172.17.0.2:3310/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
  54. username: healthcloud
  55. password: GP8Qz4qU
  56. redis:
  57. host: 172.17.0.3
  58. port: 6379
  59. password: q4YaQemf
  60. data:
  61. solr:
  62. zk-host: node1.jkzl.com,node2.jkzl.com,node3.jkzl.com:2181/solr
  63. fast-dfs:
  64. tracker-server: 172.17.0.3:22122
  65. public-server: http://172.17.0.3:8888
  66. elasticsearch:
  67. cluster-name: elasticsearch
  68. cluster-nodes: 172.17.0.3:9300