crss-mtr-exist-dev.yml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. spring:
  2. crss-dataflow:
  3. datasource:
  4. jdbcUrl: jdbc:postgresql://172.16.0.20:5432/crss?currentSchema=dataflow
  5. url: jdbc:postgresql://172.16.0.20:5432/crss?currentSchema=dataflow
  6. username: crss_dataflow
  7. password: lgcCpwy0
  8. driverClassName: org.postgresql.Driver
  9. maxPoolSize: 5
  10. test-on-borrow: true
  11. validation-query: SELECT 1
  12. crss-main:
  13. datasource:
  14. jdbcUrl: jdbc:postgresql://172.16.0.20:5432/crss?currentSchema=meterprocess
  15. url: jdbc:postgresql://172.16.0.20:5432/crss?currentSchema=meterprocess
  16. username: crss_meterprocess
  17. password: D9JpfUtT
  18. driverClassName: org.postgresql.Driver
  19. maxPoolSize: 5
  20. test-on-borrow: true
  21. validation-query: SELECT 1
  22. crss-registration:
  23. dataSource:
  24. jdbcUrl: jdbc:postgresql://172.16.0.20:5432/crss?currentSchema=registration
  25. url: jdbc:postgresql://172.16.0.20:5432/crss?currentSchema=registration
  26. username: crss_registration
  27. password: 51UF3JA9
  28. driverClassName: org.postgresql.Driver
  29. maxPoolSize: 5
  30. test-on-borrow: true
  31. validation-query: SELECT 1
  32. jpa:
  33. show-sql: true
  34. generate-ddl: true
  35. open-in-view: false
  36. properties:
  37. hibernate:
  38. generate_statistics: true
  39. dialect: org.hibernate.dialect.PostgreSQLDialect
  40. ddl-auto: none
  41. hbm2ddl:
  42. auto: none
  43. profiles:
  44. include: mesos
  45. cloud:
  46. deployer:
  47. mesos:
  48. chronos:
  49. apiEndpoint: http://master.mesos/service/chronos/v1
  50. memory: 4096
  51. cpu: 2
  52. # apply monthly constraints here
  53. constraints:
  54. task:
  55. initialize:
  56. enable: false
  57. batch:
  58. initializer:
  59. enabled: false
  60. logging:
  61. level:
  62. com.pemc: debug
  63. batch:
  64. # resourceLocation: ${resourceLocation} - property expansion defaulted in app's application.yml
  65. chunkSize: 1
  66. maxWorkers: 10
  67. partitionSize:
  68. mtr: 1
  69. mtrSein: 20
  70. mtr:
  71. directory: /tmp/
  72. sftp:
  73. credentials:
  74. username: pemc
  75. password: 123qwe
  76. host: sftp.marathon.l4lb.thisdcos.directory
  77. port: 22
  78. workingDirectory: /upload
  79. privateKey:
  80. ---
  81. spring:
  82. profiles: dailyMtr
  83. cloud.deployer.mesos.chronos.constraints:
  84. ---