gpt4 book ai didi

org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.sendAbortProcessSignal()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-24 02:53:05 28 4
gpt4 key购买 nike

本文整理了Java中org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.sendAbortProcessSignal()方法的一些代码示例,展示了WALProcedureStore.sendAbortProcessSignal()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WALProcedureStore.sendAbortProcessSignal()方法的具体详情如下:
包路径:org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore
类名称:WALProcedureStore
方法名:sendAbortProcessSignal

WALProcedureStore.sendAbortProcessSignal介绍

暂无

代码示例

代码示例来源:origin: apache/hbase

sendAbortProcessSignal();
 throw new RuntimeException(e);
} finally {

代码示例来源:origin: apache/hbase

Thread.currentThread().interrupt();
 syncException.compareAndSet(null, e);
 sendAbortProcessSignal();
 throw e;
} catch (Throwable t) {
 syncException.compareAndSet(null, t);
 sendAbortProcessSignal();
 throw t;
} finally {

代码示例来源:origin: org.apache.hbase/hbase-procedure

sendAbortProcessSignal();
 throw new RuntimeException(e);
} finally {

代码示例来源:origin: harbby/presto-connectors

} catch (InterruptedException e) {
 Thread.currentThread().interrupt();
 sendAbortProcessSignal();
 throw new RuntimeException(e);
} finally {

代码示例来源:origin: com.aliyun.hbase/alihbase-procedure

sendAbortProcessSignal();
 throw new RuntimeException(e);
} finally {

代码示例来源:origin: harbby/presto-connectors

private boolean rollWriterOrDie() {
 for (int i = 0; i < rollRetries; ++i) {
  if (i > 0) Threads.sleepWithoutInterrupt(waitBeforeRoll * i);
  try {
   if (rollWriter()) {
    return true;
   }
  } catch (IOException e) {
   LOG.warn("Unable to roll the log, attempt=" + (i + 1), e);
  }
 }
 LOG.fatal("Unable to roll the log");
 sendAbortProcessSignal();
 throw new RuntimeException("unable to roll the log");
}

代码示例来源:origin: com.aliyun.hbase/alihbase-procedure

Thread.currentThread().interrupt();
 syncException.compareAndSet(null, e);
 sendAbortProcessSignal();
 throw e;
} catch (Throwable t) {
 syncException.compareAndSet(null, t);
 sendAbortProcessSignal();
 throw t;
} finally {

代码示例来源:origin: org.apache.hbase/hbase-procedure

Thread.currentThread().interrupt();
 syncException.compareAndSet(null, e);
 sendAbortProcessSignal();
 throw e;
} catch (Throwable t) {
 syncException.compareAndSet(null, t);
 sendAbortProcessSignal();
 throw t;
} finally {

代码示例来源:origin: harbby/presto-connectors

} catch (InterruptedException e) {
 Thread.currentThread().interrupt();
 sendAbortProcessSignal();
 syncException.compareAndSet(null, e);
 throw e;

代码示例来源:origin: harbby/presto-connectors

private long syncSlots() throws Throwable {
 int retry = 0;
 int logRolled = 0;
 long totalSynced = 0;
 do {
  try {
   totalSynced = syncSlots(stream, slots, 0, slotIndex);
   break;
  } catch (Throwable e) {
   LOG.warn("unable to sync slots, retry=" + retry);
   if (++retry >= maxRetriesBeforeRoll) {
    if (logRolled >= maxSyncFailureRoll) {
     LOG.error("Sync slots after log roll failed, abort.", e);
     sendAbortProcessSignal();
     throw e;
    }
    if (!rollWriterOrDie()) {
     throw e;
    }
    logRolled++;
    retry = 0;
   }
  }
 } while (isRunning());
 return totalSynced;
}

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com