Java Code Examples for org.apache.hadoop.hbase.protobuf.generated.AdminProtos#WarmupRegionRequest
The following examples show how to use
org.apache.hadoop.hbase.protobuf.generated.AdminProtos#WarmupRegionRequest .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: BaseHRegionServer.java From hbase-indexer with Apache License 2.0 | 4 votes |
@Override public AdminProtos.WarmupRegionResponse warmupRegion(RpcController rpcController, AdminProtos.WarmupRegionRequest warmupRegionRequest) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example 2
Source File: BaseHRegionServer.java From spliceengine with GNU Affero General Public License v3.0 | 4 votes |
public AdminProtos.WarmupRegionResponse warmupRegion(RpcController controller, AdminProtos.WarmupRegionRequest request) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }