Advertisement
Guest User

Untitled

a guest
Jan 25th, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. db {
  2. aws {
  3. pool-type = "hikaricp"
  4. driver = "org.postgresql.Driver"
  5. url = "jdbc:postgresql://kubitschek-mopub.cddbioupudhn.us-east-1.rds.amazonaws.com:5432/kubitschek"
  6. user = "ntoggle"
  7. password = "iNxKhUrPEz4Fq7yV"
  8. pool-size = 20
  9. }
  10. }
  11.  
  12. kubitschek.persistence = ${localdb}
  13. kubitschek.es = ${es-run.es}
  14. kubitschek.features = ${es-run.features}
  15. kubitschek.estimation = ${es-run.estimation}
  16.  
  17. localdb = {
  18. type = "postgresql"
  19. db = ${db.localhost}
  20. }
  21.  
  22. memory = {
  23. type = "memory"
  24. }
  25.  
  26. es-run = ${es-config.local}
  27.  
  28. es-config.local = {
  29.  
  30. es = {
  31. addresses = ["localhost:9300"]
  32. cluster = "Neil"
  33. }
  34. estimation = {
  35. duration = "P1Y" // do not estimate with traffic older than this
  36. bid-request-index = "bidrequest-neil-local-read"
  37. // bid-request-index = "bidrequest-badname-read"
  38.  
  39. second-index = "second-neil-local-read"
  40. }
  41. features = {
  42. apps-index = "app-neil-local-read"
  43. sites-index = "site-neil-local-read"
  44. handsets-index = "handset-neil-local-read"
  45. os-index = "os-neil-local-read"
  46. city-index = "city-neil-local-read"
  47. carrier-index = "carrier-neil-local-read"
  48. disabled-features = []
  49. disabled-traffic-types = []
  50. }
  51. }
  52.  
  53. es-config.dev = {
  54.  
  55. es = {
  56. addresses = ["s1.internal.ntoggle.com:9300"]
  57. cluster = "itc"
  58. }
  59. estimation = {
  60. duration = "P1Y" // do not estimate with traffic older than this
  61. bid-request-index = "bidrequest-dev-read"
  62. second-index = "second-dev-read"
  63. }
  64. features = {
  65. apps-index = "app-dev-read"
  66. sites-index = "site-dev-read"
  67. handsets-index = "handset-dev-read"
  68. os-index = "os-dev-read"
  69. city-index = "city-dev-read"
  70. carrier-index = "carrier-dev-read"
  71. disabled-features = []
  72. disabled-traffic-types = []
  73. }
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement