| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- spring:
- crss-dataflow:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss?currentSchema=dataflow
- username: postgres
- password: postgres
- crss-main:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss?currentSchema=meterprocess
- username: postgres
- password: postgres
- crss-registration:
- dataSource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss?currentSchema=registration
- username: postgres
- password: postgres
- jpa:
- show-sql: true
- generate-ddl: true
- profiles:
- include: mesos
- cloud:
- deployer:
- mesos:
- chronos:
- apiEndpoint: http://master.mesos/service/chronos/v1
- memory: 1024
- redis:
- host: redis.marathon.mesos
- batch:
- # resourceLocation: ${resourceLocation} - property expansion defaulted in app's application.yml
- partitionSize:
- gesq: 10000
- gesq-report: 1000
- sftp:
- credentials:
- host: sftp.marathon.l4lb.thisdcos.directory
- workingDirectory: /upload
|