svr-pack-resolve.yml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. logging:
  2. level:
  3. com:
  4. netflix: INFO
  5. org:
  6. springframework:
  7. web: INFO
  8. hibernate: ERROR
  9. spring:
  10. # REDIS
  11. redis:
  12. database: 0 # Database index used by the connection factory.
  13. port: 6379 # Redis server port.
  14. password: # Login password of the redis server.
  15. timeout: 0 # Connection timeout in milliseconds.
  16. #sentinel:
  17. # master: # Name of Redis server.
  18. # nodes: # Comma-separated list of host:port pairs.
  19. pool:
  20. 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.
  21. max-idle: 8 # Max number of "idle" connections in the pool. Use a negative value to indicate an unlimited number of idle connections.
  22. 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.
  23. 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.
  24. # SOLR (SolrProperties)
  25. data:
  26. solr:
  27. repositories.enabled: true # Enable Solr repositories.
  28. fast-dfs:
  29. pool:
  30. init-size: 5
  31. max-size: 20
  32. wait-time: 500
  33. connect-timeout: 2
  34. network-timeout: 30
  35. charset: ISO8859-1
  36. http:
  37. tracker-http-port: 80
  38. anti-steal-token: no
  39. secret-key: FastDFS1234567890
  40. hadoop:
  41. hbase-properties:
  42. - hbase.zookeeper.property.clientPort: 2181
  43. - zookeeper.znode.parent: /hbase-unsecure
  44. user:
  45. name: root
  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. host: http://172.17.110.20:8983/solr # Solr host. Ignored if "zk-host" is set.
  90. zk-host: host-172-17-110-20,host-172-17-110-186,host-172-17-110-18:2181/solr # ZooKeeper host address in the form HOST:PORT.
  91. metrics:
  92. export:
  93. statsd:
  94. host: 192.168.1.221
  95. port: 8125
  96. fast-dfs:
  97. tracker-server: 172.19.103.54:22122
  98. public-server: http://172.19.103.54:22122
  99. hadoop:
  100. hbase-properties:
  101. #- hbase.zookeeper.quorum: node2.jkzldev.com,node1.jkzldev.com,node4.jkzldev.com
  102. - hbase.zookeeper.quorum: node1,node2,node3
  103. ---
  104. spring:
  105. profiles: alpha
  106. redis:
  107. host: 192.168.1.220 # Redis server host.
  108. data:
  109. solr:
  110. #host: http://172.19.103.10:8983/solr # Solr host. Ignored if "zk-host" is set.
  111. #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.
  112. host: http://172.17.110.20:8983/solr # Solr host. Ignored if "zk-host" is set.
  113. zk-host: host-172-17-110-20,host-172-17-110-186,host-172-17-110-18:2181/solr # ZooKeeper host address in the form HOST:PORT.
  114. metrics:
  115. export:
  116. statsd:
  117. host: 192.168.1.221
  118. port: 8125
  119. fast-dfs:
  120. tracker-server: 172.19.103.54:22122
  121. public-server: http://172.19.103.54:22122
  122. hadoop:
  123. hbase-properties:
  124. #- hbase.zookeeper.quorum: node2.jkzldev.com,node1.jkzldev.com,node4.jkzldev.com
  125. - hbase.zookeeper.quorum: node1,node2,node3
  126. ---
  127. spring:
  128. profiles: test
  129. redis:
  130. host: 172.19.103.47 # Redis server host.
  131. data:
  132. solr:
  133. #host: http://172.19.103.10:8983/solr # Solr host. Ignored if "zk-host" is set.
  134. #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.
  135. host: http://172.17.110.20:8983/solr # Solr host. Ignored if "zk-host" is set.
  136. zk-host: host-172-17-110-20,host-172-17-110-186,host-172-17-110-18:2181/solr # ZooKeeper host address in the form HOST:PORT.
  137. metrics:
  138. export:
  139. statsd:
  140. host: 192.168.1.221
  141. port: 8125
  142. fast-dfs:
  143. tracker-server: 172.19.103.13:22122
  144. public-server: http://172.19.103.52:80
  145. hadoop:
  146. hbase-properties:
  147. #- hbase.zookeeper.quorum: node2.jkzldev.com,node1.jkzldev.com,node4.jkzldev.com
  148. - hbase.zookeeper.quorum: node1,node2,node3
  149. ---
  150. spring:
  151. profiles: prod
  152. redis:
  153. host: 11.1.2.20 # Redis server host.
  154. data:
  155. solr:
  156. host: http://172.19.103.10:8983/solr # Solr host. Ignored if "zk-host" is set.
  157. #zk-host: node1,node2,node3:2181/solr # ZooKeeper host address in the form HOST:PORT.
  158. zk-host: node1.hde.jkzlehr.com,node2.hde.jkzlehr.com,node3.hde.jkzlehr.com:2181/solr
  159. metrics:
  160. export:
  161. statsd:
  162. host: localhost
  163. port: 8125
  164. fast-dfs:
  165. tracker-server: 11.1.2.9:22122
  166. public-server: http://ds.ehr.yihu.com:22122
  167. hadoop:
  168. hbase-properties:
  169. #- hbase.zookeeper.quorum: node2.jkzl.com,node3.jkzl.com,node1.jkzl.com
  170. - hbase.zookeeper.quorum: node1,node2,node3