Advertisement
Guest User

Untitled

a guest
May 22nd, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1. #logging:
  2. # config: /opt/tomcat/config-overrides/subscriptions-logback.xml
  3. endpoints:
  4. jmx:
  5. domain: subscriptions
  6. spring:
  7. jmx:
  8. default-domain: subscriptions
  9.  
  10. aop.proxy-target-class: true
  11. datasource:
  12. url: jdbc:p6spy:postgresql://mdvmsrv1011:5411/subscriptions
  13. username: dryad_subscriptions
  14. password: upstream
  15. driver-class-name: com.p6spy.engine.spy.P6SpyDriver
  16. #max-active: 5
  17. #max-idle: 1
  18. #min-idle: 1
  19. #initial-size: 1
  20. max-wait: 10000
  21. test-while-idle: true
  22. validation-query: SELECT 1
  23. validation-query-timeout: 1
  24. initSQL: SELECT 1
  25. jpa:
  26. database-platform: org.hibernate.dialect.PostgreSQLDialect
  27. show-sql: false
  28. properties:
  29. hibernate.cache.use_second_level_cache: true
  30. hibernate.cache.region.factory_class: org.hibernate.cache.ehcache.EhCacheRegionFactory
  31. hibernate.cache.use_query_cache: true
  32. net.sf.ehcache.configurationResourceName: /subscriptions-ehcache.xml
  33. hibernate.generate_statistics: true
  34. rabbitmq:
  35. addresses: rabbit1
  36. username: guest
  37. password: guest
  38. jackson:
  39. serialization:
  40. FAIL_ON_EMPTY_BEANS: false
  41. WRITE_DATES_AS_TIMESTAMPS: false
  42. deserialization:
  43. FAIL_ON_UNKNOWN_PROPERTIES: false
  44. ADJUST_DATES_TO_CONTEXT_TIME_ZONE: false
  45. flyway:
  46. enabled: true
  47. table: DB_MIGRATION_HISTORY
  48. sqlMigrationSuffix: .Final.sql
  49. schemas: subscriptions
  50. outOfOrder: true
  51. application:
  52. rabbitmq:
  53. rabbit-defs-resource-name: /subscriptions-rabbit-defs.json
  54. ha-nodes: #rabbit@address1,rabbit@address2
  55. binding: binding.subscriptions
  56. queues:
  57. -
  58. queue-name: queue.subscriptions.response.node0
  59. concurrent-consumers: 50
  60. prefetch-count: 30
  61. -
  62. queue-name: queue.subscriptions
  63. concurrent-consumers: 50
  64. prefetch-count: 30
  65. database-schema: subscriptions
  66. dryad-installation-code: DRD01@subscriptions
  67. time-zone: Europe/Athens
  68. retries:
  69. initialDelayMillis: 500
  70. exponentialBackOffMultiplier: 2
  71. maxRetries: 3
  72. consumers:
  73. maxAttempts: 4
  74. health-checks:
  75. db-query: select * from subscriptions.subscription limit 1;
  76. node:
  77. id: node0
  78. base-url: http://localhost:8000
  79. metrics:
  80. web.enabled: true
  81. endpoints.enabled: true
  82. graphite:
  83. enabled: false
  84. cron: "*/6 * * * * *"
  85. host: localhost
  86. port: 2003
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement