crss-mtr-pemc-dev.yml 2.0 KB

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