kumuluz / kumuluzee

Lightweight open-source framework for developing microservices using standard Java EE technologies and migrating Java EE to cloud-native architecture.
https://ee.kumuluz.com
MIT License
291 stars 71 forks source link

db pool config #181

Closed eriskooo closed 3 years ago

eriskooo commented 3 years ago

we are about to increase our db pool size, and I've found 2 options in doc -> which one is correct ?

jdbc:postgresql,

datasources: pool: max-size: 20

or

datasources: max-pool-size: 20

thank you for clarification.

urbim commented 3 years ago

The first one. See: https://github.com/kumuluz/kumuluzee/wiki/EeConfig

eriskooo commented 3 years ago

thank you !