@Override
public HThriftClient borrowClient() throws HectorException {
if ( !active.get() ) {
throw new HInactivePoolException("Attempt to borrow on in-active pool: " + getName());
}
HThriftClient cassandraClient = availableClientQueue.poll();
int currentActiveClients = activeClientsCount.incrementAndGet();