本文整理汇总了Java中org.apache.hadoop.hbase.exceptions.PreemptiveFastFailException类的典型用法代码示例。如果您正苦于以下问题:Java PreemptiveFastFailException类的具体用法?Java PreemptiveFastFailException怎么用?Java PreemptiveFastFailException使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
PreemptiveFastFailException类属于org.apache.hadoop.hbase.exceptions包,在下文中一共展示了PreemptiveFastFailException类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: intercept
import org.apache.hadoop.hbase.exceptions.PreemptiveFastFailException; //导入依赖的package包/类
public void intercept(FastFailInterceptorContext context)
throws PreemptiveFastFailException {
context.setFailureInfo(repeatedFailuresMap.get(context.getServer()));
if (inFastFailMode(context.getServer()) && !currentThreadInFastFailMode()) {
// In Fast-fail mode, all but one thread will fast fail. Check
// if we are that one chosen thread.
context.setRetryDespiteFastFailMode(shouldRetryInspiteOfFastFail(context
.getFailureInfo()));
if (!context.isRetryDespiteFastFailMode()) { // we don't have to retry
LOG.debug("Throwing PFFE : " + context.getFailureInfo() + " tries : "
+ context.getTries());
throw new PreemptiveFastFailException(
context.getFailureInfo().numConsecutiveFailures.get(),
context.getFailureInfo().timeOfFirstFailureMilliSec,
context.getFailureInfo().timeOfLatestAttemptMilliSec, context.getServer());
}
}
context.setDidTry(true);
}
示例2: intercept
import org.apache.hadoop.hbase.exceptions.PreemptiveFastFailException; //导入依赖的package包/类
public void intercept(FastFailInterceptorContext context)
throws PreemptiveFastFailException {
context.setFailureInfo(repeatedFailuresMap.get(context.getServer()));
if (inFastFailMode(context.getServer()) && !currentThreadInFastFailMode()) {
// In Fast-fail mode, all but one thread will fast fail. Check
// if we are that one chosen thread.
context.setRetryDespiteFastFailMode(shouldRetryInspiteOfFastFail(context
.getFailureInfo()));
if (!context.isRetryDespiteFastFailMode()) { // we don't have to retry
LOG.debug("Throwing PFFE : " + context.getFailureInfo() + " tries : "
+ context.getTries());
throw new PreemptiveFastFailException(
context.getFailureInfo().numConsecutiveFailures.get(),
context.getFailureInfo().timeOfFirstFailureMilliSec,
context.getFailureInfo().timeOfLatestAttemptMilliSec, context.getServer(),
context.getGuaranteedClientSideOnly().isTrue());
}
}
context.setDidTry(true);
}
示例3: intercept
import org.apache.hadoop.hbase.exceptions.PreemptiveFastFailException; //导入依赖的package包/类
@Override
public void intercept(
RetryingCallerInterceptorContext abstractRetryingCallerInterceptorContext)
throws PreemptiveFastFailException {
}