本文整理汇总了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;
}