| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- 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
- mq: 90000
- ssla: 5000
- report: 1
- mqMonthly: 24
- mqDaily: 96
- report-max-count: 28828
- mqreport:
- directory: /tmp/
- sftp:
- credentials:
- username: pemc
- password: 123qwe
- host: sftp.marathon.l4lb.thisdcos.directory
- port: 22
- workingDirectory: /upload/mq
- privateKey:
- ---
- spring:
- profiles: dailyMq
- cloud.deployer.mesos.chronos.constraints:
- ---
- ---
- spring:
- profiles: dailyMqReport
- cloud.deployer.mesos.chronos.constraints:
- ---
|