svr-pack-resolve.yml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. port: 6379 # Redis server port.
  13. password: # Login password of the redis server.
  14. timeout: 0 # Connection timeout in milliseconds.
  15. #sentinel:
  16. # master: # Name of Redis server.
  17. # nodes: # Comma-separated list of host:port pairs.
  18. pool:
  19. 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.
  20. max-idle: 8 # Max number of "idle" connections in the pool. Use a negative value to indicate an unlimited number of idle connections.
  21. 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.
  22. 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.
  23. fast-dfs:
  24. connect-timeout: 20
  25. network-timeout: 60
  26. charset: ISO8859-1
  27. pool:
  28. init-size: 10
  29. max-size: 20
  30. wait-time: 500
  31. http:
  32. tracker-http-port: 80
  33. anti-steal-token: no
  34. secret-key: FastDFS1234567890
  35. hadoop:
  36. hbase-properties:
  37. hbase.zookeeper.property.clientPort: 2181
  38. zookeeper.znode.parent: /hbase-unsecure
  39. user:
  40. name: root
  41. resolve:
  42. job:
  43. init-size: 10 #解析入库初始任务数
  44. max-size: 10 #解析入库最大任务数
  45. cron-exp: 0/1 * * * * ? #解析任务触发间隔表达式
  46. elasticsearch:
  47. pool:
  48. init-size: 10
  49. max-size: 20
  50. eip:
  51. schemaVersion: 5a6951bff0bb
  52. ---
  53. spring:
  54. profiles: dev
  55. datasource:
  56. url: jdbc:mysql://172.19.103.50:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
  57. username: chenweishan
  58. password: chenweishan
  59. redis:
  60. host: 172.19.103.47 # Redis server host.
  61. port: 6379
  62. password: redis!@456
  63. fast-dfs:
  64. tracker-server: 172.19.103.13:22122
  65. public-server: http://172.19.103.52:80
  66. pacs-group-name: group1 # 影像文件落入到group1上
  67. hadoop:
  68. hbase-properties:
  69. hbase.zookeeper.quorum: node1.hde.h3c.com,node2.hde.h3c.com,node3.hde.h3c.com
  70. elasticsearch:
  71. cluster-name: elasticsearch
  72. cluster-nodes: 172.19.103.9:9300
  73. ftp:
  74. address: 172.19.103.58
  75. username: pacs
  76. password: pacssr2018
  77. port: 21
  78. ---
  79. spring:
  80. profiles: prod
  81. datasource:
  82. url: jdbc:mysql://172.19.103.50:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
  83. username: chenweishan
  84. password: chenweishan
  85. redis:
  86. host: 172.19.103.47
  87. port: 6379
  88. password: redis!@456
  89. fast-dfs:
  90. tracker-server: 172.19.103.13:22122
  91. public-server: http://172.19.103.52:80
  92. pacs-group-name: group1 # 影像文件落入到group1上
  93. hadoop:
  94. hbase-properties:
  95. hbase.zookeeper.quorum: node1.hde.h3c.com,node2.hde.h3c.com,node3.hde.h3c.com
  96. elasticsearch:
  97. cluster-name: elasticsearch
  98. cluster-nodes: 172.19.103.9:9300
  99. ftp:
  100. address: 172.19.103.58
  101. username: pacs
  102. password: pacssr2018
  103. port: 21