| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- spring:
- crss-stl:
- datasource:
- jdbcUrl: jdbc:postgresql://172.16.0.20:5432/crss?currentSchema=settlement
- username: crss_settlement
- password: i17SMOPm
- driverClassName: org.postgresql.Driver
- maximumPoolSize: 2
- test-on-borrow: true
- validation-query: SELECT 1
- crss-main:
- datasource:
- jdbcUrl: jdbc:postgresql://172.16.0.20:5432/crss?currentSchema=meterprocess
- username: crss_meterprocess
- password: D9JpfUtT
- driverClassName: org.postgresql.Driver
- maximumPoolSize: 2
- test-on-borrow: true
- validation-query: SELECT 1
- crss-metering:
- datasource:
- jdbcUrl: jdbc:postgresql://172.16.0.20:5432/crss?currentSchema=metering
- username: crss_metering
- password: Fh7UcXpW
- driverClassName: org.postgresql.Driver
- maximumPoolSize: 2
- test-on-borrow: true
- validation-query: SELECT 1
- crss-nmms:
- datasource:
- jdbcUrl: jdbc:postgresql://172.16.0.20:5432/crss?currentSchema=nmms
- username: crss_nmms
- password: lbgg1i2Y
- driverClassName: org.postgresql.Driver
- maximumPoolSize: 2
- test-on-borrow: true
- validation-query: SELECT 1
- crss-dataflow:
- datasource:
- jdbcUrl: jdbc:postgresql://172.16.0.20:5432/crss?currentSchema=dataflow
- username: crss_dataflow
- password: lgcCpwy0
- driverClassName: org.postgresql.Driver
- maximumPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- crss-registration:
- datasource:
- jdbcUrl: jdbc:postgresql://172.16.0.20:5432/crss?currentSchema=registration
- username: crss_registration
- password: 51UF3JA9
- driverClassName: org.postgresql.Driver
- profiles:
- include: mesos
- cloud:
- deployer:
- mesos:
- chronos:
- apiEndpoint: http://master.mesos/service/chronos/v1
- memory: 2048
- cpu: 0.5
- constraints:
- task:
- initialize:
- enable: false
- batch:
- initializer:
- enabled: false
- job:
- enabled: true
- jpa:
- show-sql: false
- generate-ddl: false
- properties:
- hibernate:
- generate_statistics: false
- dialect: org.hibernate.dialect.PostgreSQL81Dialect
- ddl-auto: none
- hbm2ddl:
- import_files:
- logging:
- level:
- com.pemc.crss.settlement.task.calculation.addtlcomp: DEBUG
- com.netflix: DEBUG
- org.springframework.cloud: DEBUG
- org.hibernate.stat: debug
|