if (crazyHoldTime == 1 && someHoldTime == 1 && tserverStatus.size() > 1) {
log.warn("Tablet server " + instance + " exceeded maximum hold time: attempting to kill it");
try {
TServerConnection connection = tserverSet.getConnection(instance);
if (connection != null)
connection.fastHalt(masterLock);
} catch (TException e) {
log.error(e, e);
}
tserverSet.remove(instance);
}