本文整理匯總了Java中org.apache.hadoop.hbase.ipc.RemoteWithExtrasException類的典型用法代碼示例。如果您正苦於以下問題:Java RemoteWithExtrasException類的具體用法?Java RemoteWithExtrasException怎麽用?Java RemoteWithExtrasException使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
RemoteWithExtrasException類屬於org.apache.hadoop.hbase.ipc包,在下文中一共展示了RemoteWithExtrasException類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: testEndpointExceptions
import org.apache.hadoop.hbase.ipc.RemoteWithExtrasException; //導入依賴的package包/類
@Test
public void testEndpointExceptions() throws Exception {
final ServerName serverName = TEST_UTIL.getHBaseCluster().getRegionServer(0).getServerName();
final ServerRpcController controller = new ServerRpcController();
final BlockingRpcCallback<DummyRegionServerEndpointProtos.DummyResponse> rpcCallback =
new BlockingRpcCallback<DummyRegionServerEndpointProtos.DummyResponse>();
DummyRegionServerEndpointProtos.DummyService service =
ProtobufUtil.newServiceStub(DummyRegionServerEndpointProtos.DummyService.class,
TEST_UTIL.getHBaseAdmin().coprocessorService(serverName));
service.dummyThrow(controller,
DummyRegionServerEndpointProtos.DummyRequest.getDefaultInstance(), rpcCallback);
assertEquals(null, rpcCallback.get());
assertTrue(controller.failedOnException());
assertEquals(WHAT_TO_THROW.getClass().getName().trim(),
((RemoteWithExtrasException) controller.getFailedOn().getCause()).getClassName().trim());
}
示例2: testEndpointExceptions
import org.apache.hadoop.hbase.ipc.RemoteWithExtrasException; //導入依賴的package包/類
@Test
public void testEndpointExceptions() throws Exception {
final ServerName serverName = TEST_UTIL.getHBaseCluster().getRegionServer(0).getServerName();
final ServerRpcController controller = new ServerRpcController();
final CoprocessorRpcUtils.BlockingRpcCallback<DummyRegionServerEndpointProtos.DummyResponse>
rpcCallback = new CoprocessorRpcUtils.BlockingRpcCallback<>();
DummyRegionServerEndpointProtos.DummyService service =
ProtobufUtil.newServiceStub(DummyRegionServerEndpointProtos.DummyService.class,
TEST_UTIL.getAdmin().coprocessorService(serverName));
service.dummyThrow(controller,
DummyRegionServerEndpointProtos.DummyRequest.getDefaultInstance(), rpcCallback);
assertEquals(null, rpcCallback.get());
assertTrue(controller.failedOnException());
assertEquals(WHAT_TO_THROW.getClass().getName().trim(),
((RemoteWithExtrasException) controller.getFailedOn().getCause()).getClassName().trim());
}
示例3: shouldRethrowException
import org.apache.hadoop.hbase.ipc.RemoteWithExtrasException; //導入依賴的package包/類
private boolean shouldRethrowException(Exception e) {
// recreate region scanners if the exception was throw due to a region split. In that case, the
// root cause could be an DoNotRetryException or an RemoteWithExtrasException with class name of
// DoNotRetryException
Throwable rootCause = Throwables.getRootCause(e);
boolean rethrow = true;
if (rootCause instanceof DoNotRetryIOException)
rethrow = false;
else if (rootCause instanceof RemoteWithExtrasException) {
String className = ((RemoteWithExtrasException) rootCause).getClassName();
if (className.compareTo(DoNotRetryIOException.class.getName()) == 0) {
rethrow = false;
}
}
if (!rethrow) {
if (LOG.isDebugEnabled())
SpliceLogUtils.debug(LOG, "exception logged creating split region scanner %s", StringUtils.stringifyException(e));
try {
clock.sleep(200l, TimeUnit.MILLISECONDS);
} catch (InterruptedException ignored) {
}
}
return rethrow;
}