| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- spring:
- crss-stl:
- datasource:
- jdbcUrl: jdbc:edb://${crss.database.ip}:5432/crss?currentSchema=settlement&ApplicationName=stlInvJob
- username: crss_settlement
- password: i17SMOPm
- driverClassName: com.edb.Driver
- connectionTimeout: 300000
- maximumPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- crss-dataflow:
- datasource:
- jdbcUrl: jdbc:edb://${crss.database.ip}:5432/crss?currentSchema=dataflow&ApplicationName=stlInvJob
- username: crss_dataflow
- password: lgcCpwy0
- driverClassName: com.edb.Driver
- connectionTimeout: 300000
- maximumPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- crss-main:
- datasource:
- jdbcUrl: jdbc:edb://${crss.database.ip}:5432/crss?currentSchema=meterprocess&ApplicationName=stlInvJob
- username: crss_meterprocess
- password: D9JpfUtT
- driverClassName: com.edb.Driver
- connectionTimeout: 300000
- maximumPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- crss-registration:
- datasource:
- jdbcUrl: jdbc:edb://${crss.database.ip}:5432/crss?currentSchema=registration&ApplicationName=stlInvJob
- username: crss_registration
- password: 51UF3JA9
- driverClassName: com.edb.Driver
- connectionTimeout: 150000
- maximumPoolSize: 3
- test-on-borrow: true
- validation-query: SELECT 1
- jpa:
- show-sql: false
- generate-ddl: false
- properties:
- hibernate:
- generate_statistics: false
- dialect: org.hibernate.dialect.PostgreSQLDialect
- ddl-auto: validate
- hbm2ddl:
- auto:
- import_files:
- cloud:
- task:
- initialize:
- enable: false
- deployer:
- mesos:
- chronos:
- apiEndpoint: http://chronos.marathon.l4lb.thisdcos.directory:10001/v1
- memory: 6144
- cpu: 1
- constraints: rack,EQUALS,rack-monthly
- dcos:
- authorizationToken: ${crss.dcos.token}
- batch:
- initializer:
- enabled: false
- job:
- enabled: true
- batch:
- chunkSize: 1000
- maxWorkers: 27
- partitionSize:
- amsSp: 3000
- amsInv: 3000
- amsRmf: 3000
- energyStl: 50 #remove if not used anymore?
- spotLlccStl: 16
- # LR part: partitions per billing id = Math.ceil(30/lr)
- # lr values greater than 16 will always result to 2 partitions per billing id with different DI range
- lrBo: 8
- lr: 7
- energyStlB: 20 #Number of billingIds per trading date
- logging:
- level:
- com.pemc: DEBUG
- com.netflix: DEBUG
- org.springframework.cloud: DEBUG
- org.hibernate.stat: debug
- report:
- directory:
- base: /tmp/stl/
- sftp: report/
- sftp:
- credentials:
- username: pemc
- password: 123qwe
- host: sftp.marathon.l4lb.thisdcos.directory
- port: 22
- workingDirectory: /upload/stl
- privateKey:
|