svr-pack-resolve.yml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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. # 住院从“病人摘要”,“入院记录”与“病案首页”提取事件 Clinic 0门诊 Resident 1住院 MedicalExam 2体检
  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. diagnosis:
  64. data-sets:
  65. - HDSC01_03
  66. - HDSC02_17
  67. meta-data:
  68. - HDSD00_01_550 # 门诊/住院诊断
  69. # 身份提取参数,从人口学提取
  70. identity:
  71. data-sets:
  72. - HDSA00_01
  73. meta-data:
  74. id-card-no: HDSA00_01_017 # 身份标识
  75. id-card-type: HDSA00_01_016 # 身份类型
  76. patient-name: HDSD00_01_002 # 姓名
  77. # 卡提取参数,从就诊摘要提取
  78. card:
  79. data-sets:
  80. - HDSC01_01: 门诊-病人摘要
  81. - HDSC01_02: 门诊-挂号
  82. - HDSC02_01: 住院-病人摘要
  83. - HDSC02_02: 住院-首页
  84. meta-data:
  85. - card-no: CARD_NO #就诊卡号
  86. - card-type: CARD_TYPE #就诊卡类型
  87. #error code and message
  88. ---
  89. spring:
  90. profiles: dev
  91. redis:
  92. host: 192.168.1.220 # Redis server host.
  93. data:
  94. solr:
  95. zk-host: node1.hde.h3c.com,node2.hde.h3c.com:2181/solr # ZooKeeper host address in the form HOST:PORT.
  96. metrics:
  97. export:
  98. statsd:
  99. host: 192.168.1.221
  100. port: 8125
  101. fast-dfs:
  102. tracker-server: 172.19.103.54:22122
  103. public-server: http://172.19.103.54:22122
  104. hadoop:
  105. hbase-properties:
  106. - hbase.zookeeper.quorum: node1.hde.h3c.com,node2.hde.h3c.com,node3.hde.h3c.com
  107. ---
  108. spring:
  109. profiles: alpha
  110. redis:
  111. host: 192.168.1.220 # Redis server host.
  112. data:
  113. solr:
  114. zk-host: node1.hde.h3c.com,node2.hde.h3c.com:2181/solr # ZooKeeper host address in the form HOST:PORT.
  115. metrics:
  116. export:
  117. statsd:
  118. host: 192.168.1.221
  119. port: 8125
  120. fast-dfs:
  121. tracker-server: 172.19.103.54:22122
  122. public-server: http://172.19.103.54:22122
  123. hadoop:
  124. hbase-properties:
  125. - hbase.zookeeper.quorum: node1.hde.h3c.com,node2.hde.h3c.com,node3.hde.h3c.com
  126. ---
  127. spring:
  128. profiles: test
  129. redis:
  130. host: 172.19.103.47 # Redis server host.
  131. data:
  132. solr:
  133. zk-host: node1.hde.h3c.com,node2.hde.h3c.com:2181/solr # ZooKeeper host address in the form HOST:PORT.
  134. metrics:
  135. export:
  136. statsd:
  137. host: 192.168.1.221
  138. port: 8125
  139. fast-dfs:
  140. tracker-server: 172.19.103.13:22122
  141. public-server: http://172.19.103.52:80
  142. hadoop:
  143. hbase-properties:
  144. - hbase.zookeeper.quorum: node1.hde.h3c.com,node2.hde.h3c.com,node3.hde.h3c.com
  145. ---
  146. spring:
  147. profiles: prod
  148. redis:
  149. host: 11.1.2.20 # Redis server host.
  150. data:
  151. solr:
  152. host: http://172.19.103.10:8983/solr # Solr host. Ignored if "zk-host" is set.
  153. #zk-host: node1,node2,node3:2181/solr # ZooKeeper host address in the form HOST:PORT.
  154. zk-host: node1.hde.jkzlehr.com,node2.hde.jkzlehr.com,node3.hde.jkzlehr.com:2181/solr
  155. metrics:
  156. export:
  157. statsd:
  158. host: localhost
  159. port: 8125
  160. fast-dfs:
  161. tracker-server: 11.1.2.9:22122
  162. public-server: http://ds.ehr.yihu.com:22122
  163. hadoop:
  164. hbase-properties:
  165. #- hbase.zookeeper.quorum: node2.jkzl.com,node3.jkzl.com,node1.jkzl.com
  166. - hbase.zookeeper.quorum: node1,node2,node3