svr-health-profile-search.yml 1.7 KB

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