svr-pack-analyzer.yml 2.7 KB

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