| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- spring:
- crss-dataflow:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss_dataflow
- 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/crss_meterprocess
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- maxPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- crss-registration:
- dataSource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss_reg
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- maxPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- jpa:
- show-sql: false
- generate-ddl: false
- open-in-view: false
- properties:
- hibernate:
- # generate_statistics: true
- dialect: org.hibernate.dialect.PostgreSQLDialect
- ddl-auto: none
- hbm2ddl:
- auto: none
- import_files:
- cloud:
- task:
- initialize:
- enable: true
- batch:
- initializer:
- enabled: true
- cache:
- jcache:
- config: ehcache3.xml
- redis:
- host: localhost
- port: 6379
- logging:
- level:
- com.pemc: debug
- # org.hibernate.stat: debug
- batch:
- #resourceLocation: "file:target/libs/crss-meterprocess-task-mqcomputation-2.0.0.RC4.jar"
- chunkSize: 100
- maxWorkers: 10
- partitionSize:
- gap: 5000
- mq: 1500
- ssla: 1500
- report: 1500
- mqreport:
- directory: /tmp/
- sftp:
- credentials:
- username: pemc
- password: 123qwe
- host: pemc-storage.southeastasia.cloudapp.azure.com
- port: 22
- workingDirectory: /home/pemc/upload
- privateKey:
|