java.io.Closeable, java.lang.AutoCloseable, ConnectionPool, Dumpable, Sweeper.Sweepablepublic class ValidatingConnectionPool extends DuplexConnectionPool
A connection pool that validates connections before making them available for use.
Connections that have just been opened are not validated.
Connections that are released will
be validated.
Validation by reading from the EndPoint is not reliable, since the TCP FIN may arrive just after the validation read.
This class validates connections by putting them in a "quarantine" for a configurable timeout, where they cannot be used to send requests. When the timeout expires, the quarantined connection is made idle and therefore available to send requests.
The existing HttpClient mechanism to detect server closes will trigger and close quarantined connections, before they are made idle (and reusable) again.
There still is a small chance that the timeout expires, the connection is made idle and available again, it is used to send a request exactly when the server decides to close. This case is however unavoidable and may be mitigated by tuning the idle timeout of the servers to be larger than that of the client.
ConnectionPool.Factory| Constructor | Description |
|---|---|
ValidatingConnectionPool(Destination destination,
int maxConnections,
Callback requester,
Scheduler scheduler,
long timeout) |
| Modifier and Type | Method | Description |
|---|---|---|
void |
dump(java.lang.Appendable out,
java.lang.String indent) |
|
int |
getValidatingConnectionCount() |
|
boolean |
release(Connection connection) |
Returns the given connection, previously obtained via
ConnectionPool.acquire(),
back to this ConnectionPool. |
boolean |
remove(Connection connection) |
Removes the given connection from this ConnectionPool.
|
java.lang.String |
toString() |
acquire, acquired, active, close, dump, getConnectionCount, getMaxConnectionCount, idle, isClosed, isEmpty, proceed, released, removedactivate, close, deactivate, getActiveConnectionCount, getActiveConnections, getIdleConnectionCount, getIdleConnections, isActive, lock, onCreated, remove, sweep, unlockpublic ValidatingConnectionPool(Destination destination, int maxConnections, Callback requester, Scheduler scheduler, long timeout)
@ManagedAttribute(value="The number of validating connections", readonly=true) public int getValidatingConnectionCount()
public boolean release(Connection connection)
ConnectionPoolReturns the given connection, previously obtained via ConnectionPool.acquire(),
back to this ConnectionPool.
release in interface ConnectionPoolrelease in class DuplexConnectionPoolconnection - the connection to releasepublic boolean remove(Connection connection)
ConnectionPoolRemoves the given connection from this ConnectionPool.
remove in interface ConnectionPoolremove in class DuplexConnectionPoolconnection - the connection to removepublic void dump(java.lang.Appendable out,
java.lang.String indent)
throws java.io.IOException
dump in interface Dumpabledump in class DuplexConnectionPooljava.io.IOExceptionpublic java.lang.String toString()
toString in class DuplexConnectionPoolCopyright © 1995–2017 Webtide. All rights reserved.