| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- spring:
- crss-dataflow:
- datasource:
- jdbcUrl: jdbc:postgresql://172.16.0.20:5432/crss?currentSchema=dataflow
- url: jdbc:postgresql://172.16.0.20:5432/crss?currentSchema=dataflow
- username: crss_dataflow
- password: lgcCpwy0
- driverClassName: org.postgresql.Driver
- maxPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- crss-main:
- datasource:
- jdbcUrl: jdbc:postgresql://172.16.0.20:5432/crss?currentSchema=meterprocess
- url: jdbc:postgresql://172.16.0.20:5432/crss?currentSchema=meterprocess
- username: crss_meterprocess
- password: D9JpfUtT
- driverClassName: org.postgresql.Driver
- maxPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- crss-registration:
- dataSource:
- jdbcUrl: jdbc:postgresql://172.16.0.20:5432/crss?currentSchema=registration
- url: jdbc:postgresql://172.16.0.20:5432/crss?currentSchema=registration
- username: crss_registration
- password: 51UF3JA9
- driverClassName: org.postgresql.Driver
- maxPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- jpa:
- # show-sql: true
- generate-ddl: true
- open-in-view: false
- properties:
- hibernate:
- # generate_statistics: true
- dialect: org.hibernate.dialect.PostgreSQLDialect
- ddl-auto: none
- hbm2ddl:
- auto: none
- profiles:
- include: mesos
- cloud:
- deployer:
- mesos:
- chronos:
- apiEndpoint: http://master.mesos/service/chronos/v1
- memory: 2560
- cpu: 0.5
- # apply monthly constraints here
- constraints:
- task:
- initialize:
- enable: false
- batch:
- initializer:
- enabled: false
- cache:
- jcache:
- config: ehcache3.xml
- logging:
- level:
- com.pemc: debug
- # org.hibernate.stat: debug
- batch:
- # resourceLocation: ${resourceLocation} - property expansion defaulted in app's application.yml
- chunkSize: 100
- maxWorkers: 10
- partitionSize:
- gap: 5000
- gesq: 90000
- gesq-report: 1
- gesq-report-daily: 100
- gesq-report-max-count: 28828
- gesqreport:
- directory: /tmp/
- sftp:
- credentials:
- username: pemc
- password: 123qwe
- host: sftp.marathon.l4lb.thisdcos.directory
- port: 22
- workingDirectory: /upload/gesq
- privateKey:
|