1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- spring:
- datasource:
- driver-class-name: com.mysql.jdbc.Driver
- max-active: 20
- max-idle: 8
- min-idle: 8
- validation-query: SELECT 1
- test-on-borrow: true
- elasticsearch:
- pool:
- init-size: 5
- max-size: 10
- ---
- spring:
- profiles: dev
- datasource:
- url: jdbc:mysql://172.19.103.50:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
- username: chenweishan
- password: chenweishan
- data:
- solr:
- zk-host: node1.hde.h3c.com,node2.hde.h3c.com:2181/solr # ZooKeeper host address in the form HOST:PORT.
- elasticsearch:
- jest:
- uris: http://172.19.103.9:9200
- elasticsearch:
- cluster-name: elasticsearch
- cluster-nodes: 172.19.103.9:9300
- ---
- spring:
- profiles: test
- datasource:
- url: jdbc:mysql://172.19.103.50:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
- username: chenweishan
- password: chenweishan
- data:
- solr:
- zk-host: node1.hde.h3c.com,node2.hde.h3c.com:2181/solr # ZooKeeper host address in the form HOST:PORT.
- elasticsearch:
- jest:
- uris: http://172.19.103.9:9200
- elasticsearch:
- cluster-name: elasticsearch
- cluster-nodes: 172.19.103.9:9300
- ---
- spring:
- profiles: prod_fz
- datasource:
- url: jdbc:mysql://11.1.2.5:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
- username: healthcloud
- password: GP8Qz4qU
- data:
- solr:
- zk-host: node1.ehr.h3c.com,node2.ehr.h3c.com,node3.ehr.h3c.com:2181/solr # ZooKeeper host address in the form HOST:PORT.
- elasticsearch:
- jest:
- uris: http://172.19.103.9:9200
- elasticsearch:
- cluster-name: elasticsearch
- cluster-nodes: 172.19.103.9:9300
- ---
- spring:
- profiles: prod_sr
- datasource:
- url: jdbc:mysql://10.176.97.9:3310/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
- username: healthcloud
- password: GP8Qz4qU
- data:
- solr:
- zk-host: node1.jkzl.com,node2.jkzl.com,node3.jkzl.com:2181/solr # ZooKeeper host address in the form HOST:PORT.
- elasticsearch:
- jest:
- uris: http://10.176.97.7:9200
- elasticsearch:
- cluster-name: elasticsearch
- cluster-nodes: 10.176.97.7:9300
- ---
- spring:
- profiles: prod_fzzy
- datasource:
- url: jdbc:mysql://100.100.1.159:3310/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
- username: healthcloud
- password: GP8Qz4qU
- data:
- solr:
- zk-host: node1.hde.h3c.com,node2.hde.h3c.com,node3.hde.h3c.com,node4.hde.h3c.com:2181/solr # ZooKeeper host address in the form HOST:PORT.
- elasticsearch:
- jest:
- uris: http://100.100.1.158:9200
- elasticsearch:
- cluster-name: elasticsearch
- cluster-nodes: 100.100.1.158:9300
|