| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- spring:
- crss-stl:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss_settlement
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- maxPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- # for removal after ITER 7 stl testing
- crss-meterprocess:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/stl_crss_meterprocess
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- maxPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- crss-main:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/stl_crss_meterprocess
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- maxPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- crss-metering:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/stl_crss_metering
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- maxPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- crss-nmms:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/stl_crss_nmms
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- maxPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- crss-dataflow:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss_dataflow
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- maxPoolSize: 20
- test-on-borrow: true
- validation-query: SELECT 1
- jpa:
- show-sql: false
- generate-ddl: true
- properties:
- hibernate:
- generate_statistics: false
- dialect: org.hibernate.dialect.PostgreSQL81Dialect
- ddl-auto: validate
- hbm2ddl:
- import_files:
- batch:
- job:
- enabled: true
- batch:
- resourceLocation: "file:target/libs/crss-settlement-task-calculation-2.0.0.RC6.jar"
- chunkSize: 15
- maxWorkers: 3
- partitionSize:
- retDat: 15
- retBcq: 15
- calcEta: 15
- disAggBcq: 15
- disAggBcqSeller: 15
- disAggBcqBuyer: 15
- procNss: 15
- nss: 15
- rta: 15
- rprta: 15
- rcra: 15
- runway: 15
- spotSeller: 15
- spotBuyer: 15
- logging:
- level:
- com.pemc.crss.settlement.task.calculation: DEBUG
- com.netflix: DEBUG
- org.springframework.cloud: DEBUG
- org.hibernate.stat: debug
|