svr-health-profile-search.yml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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: alpha
  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. data-source:
  36. url: jdbc:mysql://192.168.1.220:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8
  37. user-name: ha
  38. password: ha
  39. ---
  40. spring:
  41. profiles: test
  42. data:
  43. solr:
  44. zk-host: node1.jkzldev.com,node2.jkzldev.com,node4.jkzldev.com:2181/solr # ZooKeeper host address in the form HOST:PORT.
  45. ---
  46. spring:
  47. profiles: prod
  48. data:
  49. solr:
  50. zk-host: node1.jkzldev.com,node2.jkzldev.com,node4.jkzldev.com:2181/solr # ZooKeeper host address in the form HOST:PORT.