You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the connection pool, when the hard limit is reached an error is generated. Another potential option for this would be implementing a connection request queue. When there are no connections to be distributed, the request would be added to a queue, and a promise for a connection returned. As connections are released back into the pool they would be given to requests in the queue in FIFO order.
The text was updated successfully, but these errors were encountered:
Currently we only throw an exception when the hard limit is reached, or we allow the connection pool to expand on demand, so this feature would offer an alternative approach to handle over capacity demand. It is not scheduled for a release, but will get consideration for planning as demand for certain use cases dictate.
When using the connection pool, when the hard limit is reached an error is generated. Another potential option for this would be implementing a connection request queue. When there are no connections to be distributed, the request would be added to a queue, and a promise for a connection returned. As connections are released back into the pool they would be given to requests in the queue in FIFO order.
The text was updated successfully, but these errors were encountered: