svr-health-profile-search.yml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. logging:
  2. level:
  3. com:
  4. netflix: INFO
  5. data-source:
  6. driver-class-name: com.mysql.jdbc.Driver
  7. initialize-size: 1
  8. max-total: 20
  9. max-idle: 10
  10. min-idle: 1
  11. validation-query: SELECT 1
  12. test-on-borrow: true
  13. remove-abandoned-timeout: 55
  14. spring:
  15. # SOLR (SolrProperties)
  16. data:
  17. solr:
  18. repositories.enabled: true # Enable Solr repositories.
  19. ---
  20. spring:
  21. profiles: dev
  22. data:
  23. solr:
  24. zk-host: node1.jkzldev.com,node2.jkzldev.com,node4.jkzldev.com:2181/solr # ZooKeeper host address in the form HOST:PORT.
  25. data-source:
  26. url: jdbc:mysql://192.168.1.220:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8
  27. user-name: ha
  28. password: ha
  29. ---
  30. spring:
  31. profiles: test
  32. data:
  33. solr:
  34. zk-host: node1.jkzldev.com,node2.jkzldev.com,node4.jkzldev.com:2181/solr # ZooKeeper host address in the form HOST:PORT.
  35. ---
  36. spring:
  37. profiles: prod
  38. data:
  39. solr:
  40. zk-host: node1.jkzldev.com,node2.jkzldev.com,node4.jkzldev.com:2181/solr # ZooKeeper host address in the form HOST:PORT.