try {
TServerConnection conn;
conn = tserverSet.getConnection(tls.current);
if (conn != null) {
log.info("Asking " + tls.current + " to split " + tls.extent + " at " + splitPoint);
conn.splitTablet(masterLock, tls.extent, splitPoint);
} else {
log.warn("Not connected to server " + tls.current);
}
} catch (Exception e) {
log.warn("Error asking tablet server to split a tablet: " + e);