| 12345678910111213141516171819202122232425 |
- spring:
- datasource:
- # TODO: Should be replaced with psql after UAT
- url: jdbc:postgresql://192.168.241.62:5432/crss_data
- # url: jdbc:oracle:thin:@192.168.241.62:1521:ORCL
- username: crss_data
- password: crss_data
- hikari:
- connectionTimeout: 10000
- maximumPoolSize: 5
- minimumIdle: 2
- idleTimeout: 180000 # 3 min
- maxLifetime: 600000 # 10 min
- crss:
- # TODO: renaming of datasource name must also update the binding in data-extraction service and kettle files
- crss_data: # TODO: split metadata as metadataDS and for datawarehouse as datawarehouseDS
- datasource:
- url: jdbc:postgresql://192.168.241.62:5432/crss_data
- username: crss_data
- password: crss_data
- crss_reg: # TODO: rename this to registrationDS
- datasource:
- url: jdbc:postgresql://192.168.241.62:5432/crss_reg
- username: crss_reg
- password: crss_reg
|