svr-pack-resolve.yml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. logging:
  2. level:
  3. com:
  4. netflix: DEBUG
  5. spring:
  6. security:
  7. basic:
  8. enabled: false
  9. management:
  10. security:
  11. enabled: false
  12. # REDIS
  13. redis:
  14. database: 0 # Database index used by the connection factory.
  15. port: 6379 # Redis server port.
  16. password: # Login password of the redis server.
  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. # SOLR (SolrProperties)
  27. data:
  28. solr:
  29. repositories.enabled: true # Enable Solr repositories.
  30. fast-dfs:
  31. pool:
  32. init-size: 5
  33. max-size: 20
  34. wait-time: 500
  35. connect-timeout: 2
  36. network-timeout: 30
  37. charset: ISO8859-1
  38. http:
  39. tracker-http-port: 80
  40. anti-steal-token: no
  41. secret-key: FastDFS1234567890
  42. hadoop:
  43. hbase-properties:
  44. - hbase.zookeeper.property.clientPort: 2181
  45. - zookeeper.znode.parent: /hbase-unsecure
  46. ehr:
  47. # 档案包数据提取器参数,从数据集中提取摘要、事件时间与身份标识
  48. pack-extractor:
  49. # 事件提取参数,用于生成事件摘要
  50. # 门诊从“门诊摘要”与“挂号”数据集提取事件
  51. # 住院从“病人摘要”,“入院记录”与“病案首页”提取事件
  52. event:
  53. data-sets:
  54. - HDSC01_01: Clinic
  55. - HDSC01_02: Clinic
  56. - HDSC02_01: Resident
  57. - HDSC02_02: Resident
  58. - HDSC02_09: Resident
  59. meta-data:
  60. - HDSD00_01_457 # 挂号时间
  61. - HDSD00_01_575 # 入院时间
  62. # 身份提取参数,从人口学提取
  63. identity:
  64. data-sets:
  65. - HDSA00_01
  66. meta-data:
  67. id-card-no: HDSA00_01_017 # 身份标识
  68. id-card-type: HDSA00_01_016 # 身份类型
  69. # 卡提取参数,从就诊摘要提取
  70. card:
  71. data-sets:
  72. - HDSC01_01: 门诊-病人摘要
  73. - HDSC01_02: 门诊-挂号
  74. - HDSC02_01: 住院-病人摘要
  75. - HDSC02_02: 住院-首页
  76. meta-data:
  77. - CARD_NO
  78. - CARD_TYPE
  79. #error code and message
  80. ---
  81. spring:
  82. profiles: dev
  83. redis:
  84. host: 192.168.1.220 # Redis server host.
  85. data:
  86. solr:
  87. host: http://172.19.103.10:8983/solr # Solr host. Ignored if "zk-host" is set.
  88. zk-host: host-172-17-110-23,host-172-17-110-27,host-172-17-110-26:2181/solr # ZooKeeper host address in the form HOST:PORT.
  89. metrics:
  90. export:
  91. statsd:
  92. host: 192.168.1.221
  93. port: 8125
  94. fast-dfs:
  95. tracker-server: 172.19.103.54:22122
  96. public-server: http://172.19.103.54:22122
  97. hadoop:
  98. hbase-properties:
  99. - hbase.zookeeper.quorum: node2.jkzldev.com,node1.jkzldev.com,node4.jkzldev.com
  100. ---
  101. spring:
  102. profiles: alpha
  103. redis:
  104. host: 192.168.1.220 # Redis server host.
  105. data:
  106. solr:
  107. host: http://172.19.103.10:8983/solr # Solr host. Ignored if "zk-host" is set.
  108. zk-host: host-172-17-110-23,host-172-17-110-27,host-172-17-110-26:2181/solr # ZooKeeper host address in the form HOST:PORT.
  109. metrics:
  110. export:
  111. statsd:
  112. host: 192.168.1.221
  113. port: 8125
  114. fast-dfs:
  115. tracker-server: 172.19.103.54:22122
  116. public-server: http://172.19.103.54:22122
  117. hadoop:
  118. hbase-properties:
  119. - hbase.zookeeper.quorum: node2.jkzldev.com,node1.jkzldev.com,node4.jkzldev.com
  120. ---
  121. spring:
  122. profiles: test
  123. redis:
  124. host: 172.19.103.47 # Redis server host.
  125. data:
  126. solr:
  127. host: http://172.19.103.10:8983/solr # Solr host. Ignored if "zk-host" is set.
  128. zk-host: host-172-17-110-23,host-172-17-110-27,host-172-17-110-26:2181/solr # ZooKeeper host address in the form HOST:PORT.
  129. metrics:
  130. export:
  131. statsd:
  132. host: 192.168.1.221
  133. port: 8125
  134. fast-dfs:
  135. tracker-server: 172.19.103.13:22122
  136. public-server: http://172.19.103.52:80
  137. hadoop:
  138. hbase-properties:
  139. - hbase.zookeeper.quorum: node2.jkzldev.com,node1.jkzldev.com,node4.jkzldev.com
  140. ---
  141. spring:
  142. profiles: prod
  143. redis:
  144. host: 11.1.2.20 # Redis server host.
  145. data:
  146. solr:
  147. host: http://172.19.103.10:8983/solr # Solr host. Ignored if "zk-host" is set.
  148. zk-host: host-172-17-110-23,host-172-17-110-27,host-172-17-110-26:2181/solr # ZooKeeper host address in the form HOST:PORT.
  149. metrics:
  150. export:
  151. statsd:
  152. host: localhost
  153. port: 8125
  154. fast-dfs:
  155. tracker-server: 11.1.2.9:22122
  156. public-server: http://ds.ehr.yihu.com:22122
  157. hadoop:
  158. hbase-properties:
  159. - hbase.zookeeper.quorum: node2.jkzl.com,node3.jkzl.com,node1.jkzl.com