svr-pack-resolve.yml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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. ehr:
  45. # 档案包数据提取器参数,从数据集中提取摘要、事件时间与身份标识
  46. pack-extractor:
  47. # 事件提取参数,用于生成事件摘要
  48. # 门诊从“门诊摘要”与“挂号”数据集提取事件
  49. # 住院从“病人摘要”,“入院记录”与“病案首页”提取事件
  50. event:
  51. data-sets:
  52. - HDSC01_01: Clinic
  53. - HDSC01_02: Clinic
  54. - HDSC02_01: Resident
  55. - HDSC02_02: Resident
  56. - HDSC02_09: Resident
  57. meta-data:
  58. - HDSD00_01_457 # 挂号时间
  59. - HDSD00_01_575 # 入院时间
  60. # 身份提取参数,从人口学提取
  61. identity:
  62. data-sets:
  63. - HDSA00_01
  64. meta-data:
  65. id-card-no: HDSA00_01_017 # 身份标识
  66. id-card-type: HDSA00_01_016 # 身份类型
  67. # 卡提取参数,从就诊摘要提取
  68. card:
  69. data-sets:
  70. - HDSC01_01: 门诊-病人摘要
  71. - HDSC01_02: 门诊-挂号
  72. - HDSC02_01: 住院-病人摘要
  73. - HDSC02_02: 住院-首页
  74. meta-data:
  75. - CARD_NO
  76. - CARD_TYPE
  77. #error code and message
  78. ---
  79. spring:
  80. profiles: dev
  81. redis:
  82. host: 192.168.1.220 # Redis server host.
  83. data:
  84. solr:
  85. host: http://172.19.103.10:8983/solr # Solr host. Ignored if "zk-host" is set.
  86. 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.
  87. metrics:
  88. export:
  89. statsd:
  90. host: 192.168.1.221
  91. port: 8125
  92. fast-dfs:
  93. tracker-server: 172.19.103.54:22122
  94. public-server: http://172.19.103.54:22122
  95. hadoop:
  96. hbase-properties:
  97. - hbase.zookeeper.quorum: node2.jkzldev.com,node1.jkzldev.com,node4.jkzldev.com
  98. ---
  99. spring:
  100. profiles: alpha
  101. redis:
  102. host: 192.168.1.220 # Redis server host.
  103. data:
  104. solr:
  105. host: http://172.19.103.10:8983/solr # Solr host. Ignored if "zk-host" is set.
  106. 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.
  107. metrics:
  108. export:
  109. statsd:
  110. host: 192.168.1.221
  111. port: 8125
  112. fast-dfs:
  113. tracker-server: 172.19.103.54:22122
  114. public-server: http://172.19.103.54:22122
  115. hadoop:
  116. hbase-properties:
  117. - hbase.zookeeper.quorum: node2.jkzldev.com,node1.jkzldev.com,node4.jkzldev.com
  118. ---
  119. spring:
  120. profiles: test
  121. redis:
  122. host: 172.19.103.47 # Redis server host.
  123. data:
  124. solr:
  125. host: http://172.19.103.10:8983/solr # Solr host. Ignored if "zk-host" is set.
  126. 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.
  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: node2.jkzldev.com,node1.jkzldev.com,node4.jkzldev.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: 11.1.2.51,11.1.2.52,11.1.2.53:2181/solr # ZooKeeper host address in the form HOST:PORT.
  147. metrics:
  148. export:
  149. statsd:
  150. host: localhost
  151. port: 8125
  152. fast-dfs:
  153. tracker-server: 11.1.2.9:22122
  154. public-server: http://ds.ehr.yihu.com:22122
  155. hadoop:
  156. hbase-properties:
  157. - hbase.zookeeper.quorum: node2.jkzl.com,node3.jkzl.com,node1.jkzl.com