-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Description
Greeting,
I have general questions about pool properties for cases where connections are dropped below poolMin due to actions taken by network intermediaries, ie. firewall dropping idle connections.
For example, if my pool is configured for poolMin = 5, poolMax = 10 and default poolPingInterval, what will the output of pool.connectionsOpen and pool.connectionInUse be if pooled connections drop below the poolMin? I am seeing output in my application where pool.connectionsOpen drops to 0 and then back to 1 but never regaining poolMin. With this output, is my app really using only a single connection? And why isn't poolMin maintained for cases where network intermediaries is dropping connections?
I'm using Oracle client 19.X but am a bit behind with the npm module at 3.X.
Thank you for your time and support.
-DP