svr-pack-resolve.yml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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. 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. patient-name: HDSD00_01_002 # 姓名
  70. # 卡提取参数,从就诊摘要提取
  71. card:
  72. data-sets:
  73. - HDSC01_01: 门诊-病人摘要
  74. - HDSC01_02: 门诊-挂号
  75. - HDSC02_01: 住院-病人摘要
  76. - HDSC02_02: 住院-首页
  77. meta-data:
  78. - card-no: CARD_NO #就诊卡号
  79. - card-type: CARD_TYPE #就诊卡类型
  80. #error code and message
  81. ---
  82. spring:
  83. profiles: dev
  84. redis:
  85. host: 192.168.1.220 # Redis server host.
  86. data:
  87. solr:
  88. zk-host: node1.hde.h3c.com,node2.hde.h3c.com: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: node1.hde.h3c.com,node2.hde.h3c.com,node3.hde.h3c.com
  100. ---
  101. spring:
  102. profiles: alpha
  103. redis:
  104. host: 192.168.1.220 # Redis server host.
  105. data:
  106. solr:
  107. zk-host: node1.hde.h3c.com,node2.hde.h3c.com:2181/solr # ZooKeeper host address in the form HOST:PORT.
  108. metrics:
  109. export:
  110. statsd:
  111. host: 192.168.1.221
  112. port: 8125
  113. fast-dfs:
  114. tracker-server: 172.19.103.54:22122
  115. public-server: http://172.19.103.54:22122
  116. hadoop:
  117. hbase-properties:
  118. - hbase.zookeeper.quorum: node1.hde.h3c.com,node2.hde.h3c.com,node3.hde.h3c.com
  119. ---
  120. spring:
  121. profiles: test
  122. redis:
  123. host: 172.19.103.47 # Redis server host.
  124. data:
  125. solr:
  126. zk-host: node1.hde.h3c.com,node2.hde.h3c.com:2181/solr # ZooKeeper host address in the form HOST:PORT.
  127. metrics:
  128. export:
  129. statsd:
  130. host: 192.168.1.221
  131. port: 8125
  132. fast-dfs:
  133. tracker-server: 172.19.103.13:22122
  134. public-server: http://172.19.103.52:80
  135. hadoop:
  136. hbase-properties:
  137. - hbase.zookeeper.quorum: node1.hde.h3c.com,node2.hde.h3c.com,node3.hde.h3c.com
  138. ---
  139. spring:
  140. profiles: prod
  141. redis:
  142. host: 11.1.2.20 # Redis server host.
  143. data:
  144. solr:
  145. host: http://172.19.103.10:8983/solr # Solr host. Ignored if "zk-host" is set.
  146. #zk-host: node1,node2,node3:2181/solr # ZooKeeper host address in the form HOST:PORT.
  147. zk-host: node1.hde.jkzlehr.com,node2.hde.jkzlehr.com,node3.hde.jkzlehr.com:2181/solr
  148. metrics:
  149. export:
  150. statsd:
  151. host: localhost
  152. port: 8125
  153. fast-dfs:
  154. tracker-server: 11.1.2.9:22122
  155. public-server: http://ds.ehr.yihu.com:22122
  156. hadoop:
  157. hbase-properties:
  158. #- hbase.zookeeper.quorum: node2.jkzl.com,node3.jkzl.com,node1.jkzl.com
  159. - hbase.zookeeper.quorum: node1,node2,node3