当前位置: 首页>>代码示例>>Java>>正文


Java PreemptiveFastFailException类代码示例

本文整理汇总了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);
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:20,代码来源:PreemptiveFastFailInterceptor.java

示例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);
}
 
开发者ID:apache,项目名称:hbase,代码行数:21,代码来源:PreemptiveFastFailInterceptor.java

示例3: intercept

import org.apache.hadoop.hbase.exceptions.PreemptiveFastFailException; //导入依赖的package包/类
@Override
public void intercept(
    RetryingCallerInterceptorContext abstractRetryingCallerInterceptorContext)
    throws PreemptiveFastFailException {
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:6,代码来源:NoOpRetryableCallerInterceptor.java


注:本文中的org.apache.hadoop.hbase.exceptions.PreemptiveFastFailException类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。