svr-health-profile-search.yml 1.3 KB

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