Default connection pool size #2414
Unanswered
venkateshgorantla
asked this question in
Q&A
Replies: 2 comments 2 replies
-
@venkateshgorantla This doesn't seem right.
|
Beta Was this translation helpful? Give feedback.
2 replies
-
common-pool2 start will create minIdle connection, then create a new connection when there is no available connection in the current connection pool(can't exceed maxtotal), and if the new connection exceeds maxIdle, but it cools down, only maxIdle connections will still be reserved. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I see Jedis is opening 18 connections in the pool by default. However default connections size is 8 as per Apache commons GenericObjectPoolConfig. Even after setting MaxActive to 100 Jedis is creating 18 connections only.
Anyone know why 18 connections are being opened by default
Beta Was this translation helpful? Give feedback.
All reactions