if (LOG.isInfoEnabled()) {
LOG.info("Forcing split for the index table " + indexTableName + " with split key "
+ Bytes.toString(splitKey));
}
st = new SplitTransaction(indexRegion, splitKey);
if (!st.prepare()) {
LOG.error("Prepare for the index table " + indexTableName
+ " failed. So returning null. ");
return null;
}
indexRegion.forceSplit(splitKey);