use of org.apache.hadoop.hbase.master.janitor.MetaFixer in project hbase by apache.
the class MasterRpcServices method fixMeta.
@Override
public FixMetaResponse fixMeta(RpcController controller, FixMetaRequest request) throws ServiceException {
rpcPreCheck("fixMeta");
try {
MetaFixer mf = new MetaFixer(this.server);
mf.fix();
return FixMetaResponse.newBuilder().build();
} catch (IOException ioe) {
throw new ServiceException(ioe);
}
}
Aggregations