• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java EditLogInputException类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.apache.hadoop.hdfs.server.namenode.EditLogInputException的典型用法代码示例。如果您正苦于以下问题:Java EditLogInputException类的具体用法?Java EditLogInputException怎么用?Java EditLogInputException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



EditLogInputException类属于org.apache.hadoop.hdfs.server.namenode包,在下文中一共展示了EditLogInputException类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: doWork

import org.apache.hadoop.hdfs.server.namenode.EditLogInputException; //导入依赖的package包/类
private void doWork() {
  while (shouldRun) {
    try {
      // There's no point in triggering a log roll if the Standby hasn't
      // read any more transactions since the last time a roll was
      // triggered. 
      if (tooLongSinceLastLoad() &&
          lastRollTriggerTxId < lastLoadedTxnId) {
        triggerActiveLogRoll();
      }
      /**
       * Check again in case someone calls {@link EditLogTailer#stop} while
       * we're triggering an edit log roll, since ipc.Client catches and
       * ignores {@link InterruptedException} in a few places. This fixes
       * the bug described in HDFS-2823.
       */
      if (!shouldRun) {
        break;
      }
      doTailEdits();
    } catch (EditLogInputException elie) {
      LOG.warn("Error while reading edits from disk. Will try again.", elie);
    } catch (InterruptedException ie) {
      // interrupter should have already set shouldRun to false
      continue;
    } catch (Throwable t) {
      LOG.fatal("Unknown error encountered while tailing edits. " +
          "Shutting down standby NN.", t);
      terminate(1, t);
    }

    try {
      Thread.sleep(sleepTimeMs);
    } catch (InterruptedException e) {
      LOG.warn("Edit log tailer interrupted", e);
    }
  }
}
 
开发者ID:ict-carch,项目名称:hadoop-plus,代码行数:39,代码来源:EditLogTailer.java


示例2: doTailEdits

import org.apache.hadoop.hdfs.server.namenode.EditLogInputException; //导入依赖的package包/类
@VisibleForTesting
void doTailEdits() throws IOException, InterruptedException {
  // Write lock needs to be interruptible here because the 
  // transitionToActive RPC takes the write lock before calling
  // tailer.stop() -- so if we're not interruptible, it will
  // deadlock.
  namesystem.writeLockInterruptibly();
  try {
    FSImage image = namesystem.getFSImage();

    long lastTxnId = image.getLastAppliedTxId();
    
    if (LOG.isDebugEnabled()) {
      LOG.debug("lastTxnId: " + lastTxnId);
    }
    Collection<EditLogInputStream> streams;
    try {
      streams = editLog.selectInputStreams(lastTxnId + 1, 0, null, false);
    } catch (IOException ioe) {
      // This is acceptable. If we try to tail edits in the middle of an edits
      // log roll, i.e. the last one has been finalized but the new inprogress
      // edits file hasn't been started yet.
      LOG.warn("Edits tailer failed to find any streams. Will try again " +
          "later.", ioe);
      return;
    }
    if (LOG.isDebugEnabled()) {
      LOG.debug("edit streams to load from: " + streams.size());
    }
    
    // Once we have streams to load, errors encountered are legitimate cause
    // for concern, so we don't catch them here. Simple errors reading from
    // disk are ignored.
    long editsLoaded = 0;
    try {
      editsLoaded = image.loadEdits(streams, namesystem);
    } catch (EditLogInputException elie) {
      editsLoaded = elie.getNumEditsLoaded();
      throw elie;
    } finally {
      if (editsLoaded > 0 || LOG.isDebugEnabled()) {
        LOG.info(String.format("Loaded %d edits starting from txid %d ",
            editsLoaded, lastTxnId));
      }
    }

    if (editsLoaded > 0) {
      lastLoadTimeMs = monotonicNow();
    }
    lastLoadedTxnId = image.getLastAppliedTxId();
  } finally {
    namesystem.writeUnlock();
  }
}
 
开发者ID:naver,项目名称:hadoop,代码行数:55,代码来源:EditLogTailer.java


示例3: doWork

import org.apache.hadoop.hdfs.server.namenode.EditLogInputException; //导入依赖的package包/类
private void doWork() {
  while (shouldRun) {
    try {
      // There's no point in triggering a log roll if the Standby hasn't
      // read any more transactions since the last time a roll was
      // triggered. 
      if (tooLongSinceLastLoad() &&
          lastRollTriggerTxId < lastLoadedTxnId) {
        triggerActiveLogRoll();
      }
      /**
       * Check again in case someone calls {@link EditLogTailer#stop} while
       * we're triggering an edit log roll, since ipc.Client catches and
       * ignores {@link InterruptedException} in a few places. This fixes
       * the bug described in HDFS-2823.
       */
      if (!shouldRun) {
        break;
      }
      // Prevent reading of name system while being modified. The full
      // name system lock will be acquired to further block even the block
      // state updates.
      namesystem.cpLockInterruptibly();
      try {
        doTailEdits();
      } finally {
        namesystem.cpUnlock();
      }
    } catch (EditLogInputException elie) {
      LOG.warn("Error while reading edits from disk. Will try again.", elie);
    } catch (InterruptedException ie) {
      // interrupter should have already set shouldRun to false
      continue;
    } catch (Throwable t) {
      LOG.fatal("Unknown error encountered while tailing edits. " +
          "Shutting down standby NN.", t);
      terminate(1, t);
    }

    try {
      Thread.sleep(sleepTimeMs);
    } catch (InterruptedException e) {
      LOG.warn("Edit log tailer interrupted", e);
    }
  }
}
 
开发者ID:naver,项目名称:hadoop,代码行数:47,代码来源:EditLogTailer.java


示例4: doTailEdits

import org.apache.hadoop.hdfs.server.namenode.EditLogInputException; //导入依赖的package包/类
@VisibleForTesting
void doTailEdits() throws IOException, InterruptedException {
  // Write lock needs to be interruptible here because the 
  // transitionToActive RPC takes the write lock before calling
  // tailer.stop() -- so if we're not interruptible, it will
  // deadlock.
  namesystem.writeLockInterruptibly();
  try {
    FSImage image = namesystem.getFSImage();

    long lastTxnId = image.getLastAppliedTxId();
    
    if (LOG.isDebugEnabled()) {
      LOG.debug("lastTxnId: " + lastTxnId);
    }
    Collection<EditLogInputStream> streams;
    try {
      streams = editLog.selectInputStreams(lastTxnId + 1, 0, null, false);
    } catch (IOException ioe) {
      // This is acceptable. If we try to tail edits in the middle of an edits
      // log roll, i.e. the last one has been finalized but the new inprogress
      // edits file hasn't been started yet.
      LOG.warn("Edits tailer failed to find any streams. Will try again " +
          "later.", ioe);
      return;
    }
    if (LOG.isDebugEnabled()) {
      LOG.debug("edit streams to load from: " + streams.size());
    }
    
    // Once we have streams to load, errors encountered are legitimate cause
    // for concern, so we don't catch them here. Simple errors reading from
    // disk are ignored.
    long editsLoaded = 0;
    try {
      editsLoaded = image.loadEdits(streams, namesystem);
    } catch (EditLogInputException elie) {
      editsLoaded = elie.getNumEditsLoaded();
      throw elie;
    } finally {
      if (editsLoaded > 0 || LOG.isDebugEnabled()) {
        LOG.debug(String.format("Loaded %d edits starting from txid %d ",
            editsLoaded, lastTxnId));
      }
    }

    if (editsLoaded > 0) {
      lastLoadTimeMs = monotonicNow();
    }
    lastLoadedTxnId = image.getLastAppliedTxId();
  } finally {
    namesystem.writeUnlock();
  }
}
 
开发者ID:aliyun-beta,项目名称:aliyun-oss-hadoop-fs,代码行数:55,代码来源:EditLogTailer.java


示例5: doWork

import org.apache.hadoop.hdfs.server.namenode.EditLogInputException; //导入依赖的package包/类
private void doWork() {
  while (shouldRun) {
    try {
      // There's no point in triggering a log roll if the Standby hasn't
      // read any more transactions since the last time a roll was
      // triggered. 
      if (tooLongSinceLastLoad() &&
          lastRollTriggerTxId < lastLoadedTxnId) {
        triggerActiveLogRoll();
      }
      /**
       * Check again in case someone calls {@link EditLogTailer#stop} while
       * we're triggering an edit log roll, since ipc.Client catches and
       * ignores {@link InterruptedException} in a few places. This fixes
       * the bug described in HDFS-2823.
       */
      if (!shouldRun) {
        break;
      }
      // Prevent reading of name system while being modified. The full
      // name system lock will be acquired to further block even the block
      // state updates.
      namesystem.cpLockInterruptibly();
      try {
        doTailEdits();
      } finally {
        namesystem.cpUnlock();
      }
      //Update NameDirSize Metric
      namesystem.getFSImage().getStorage().updateNameDirSize();
    } catch (EditLogInputException elie) {
      LOG.warn("Error while reading edits from disk. Will try again.", elie);
    } catch (InterruptedException ie) {
      // interrupter should have already set shouldRun to false
      continue;
    } catch (Throwable t) {
      LOG.fatal("Unknown error encountered while tailing edits. " +
          "Shutting down standby NN.", t);
      terminate(1, t);
    }

    try {
      Thread.sleep(sleepTimeMs);
    } catch (InterruptedException e) {
      LOG.warn("Edit log tailer interrupted", e);
    }
  }
}
 
开发者ID:aliyun-beta,项目名称:aliyun-oss-hadoop-fs,代码行数:49,代码来源:EditLogTailer.java


示例6: doTailEdits

import org.apache.hadoop.hdfs.server.namenode.EditLogInputException; //导入依赖的package包/类
@VisibleForTesting
void doTailEdits() throws IOException, InterruptedException {
  // Write lock needs to be interruptible here because the 
  // transitionToActive RPC takes the write lock before calling
  // tailer.stop() -- so if we're not interruptible, it will
  // deadlock.
  namesystem.writeLockInterruptibly();
  try {
    FSImage image = namesystem.getFSImage();

    long lastTxnId = image.getLastAppliedTxId();
    
    if (LOG.isDebugEnabled()) {
      LOG.debug("lastTxnId: " + lastTxnId);
    }
    Collection<EditLogInputStream> streams;
    try {
      streams = editLog.selectInputStreams(lastTxnId + 1, 0, null, false);
    } catch (IOException ioe) {
      // This is acceptable. If we try to tail edits in the middle of an edits
      // log roll, i.e. the last one has been finalized but the new inprogress
      // edits file hasn't been started yet.
      LOG.warn("Edits tailer failed to find any streams. Will try again " +
          "later.", ioe);
      return;
    }
    if (LOG.isDebugEnabled()) {
      LOG.debug("edit streams to load from: " + streams.size());
    }
    
    // Once we have streams to load, errors encountered are legitimate cause
    // for concern, so we don't catch them here. Simple errors reading from
    // disk are ignored.
    long editsLoaded = 0;
    try {
      editsLoaded = image.loadEdits(streams, namesystem);
    } catch (EditLogInputException elie) {
      editsLoaded = elie.getNumEditsLoaded();
      throw elie;
    } finally {
      if (editsLoaded > 0 || LOG.isDebugEnabled()) {
        LOG.info(String.format("Loaded %d edits starting from txid %d ",
            editsLoaded, lastTxnId));
      }
    }

    if (editsLoaded > 0) {
      lastLoadTimestamp = now();
    }
    lastLoadedTxnId = image.getLastAppliedTxId();
  } finally {
    namesystem.writeUnlock();
  }
}
 
开发者ID:Nextzero,项目名称:hadoop-2.6.0-cdh5.4.3,代码行数:55,代码来源:EditLogTailer.java


示例7: doTailEdits

import org.apache.hadoop.hdfs.server.namenode.EditLogInputException; //导入依赖的package包/类
@VisibleForTesting
void doTailEdits() throws IOException, InterruptedException {
  // Write lock needs to be interruptible here because the 
  // transitionToActive RPC takes the write lock before calling
  // tailer.stop() -- so if we're not interruptible, it will
  // deadlock.
  namesystem.writeLockInterruptibly();
  try {
    FSImage image = namesystem.getFSImage();

    long lastTxnId = image.getLastAppliedTxId();
    
    if (LOG.isDebugEnabled()) {
      LOG.debug("lastTxnId: " + lastTxnId);
    }
    Collection<EditLogInputStream> streams;
    try {
      streams = editLog.selectInputStreams(lastTxnId + 1, 0, null, false);
    } catch (IOException ioe) {
      // This is acceptable. If we try to tail edits in the middle of an edits
      // log roll, i.e. the last one has been finalized but the new inprogress
      // edits file hasn't been started yet.
      LOG.warn("Edits tailer failed to find any streams. Will try again " +
          "later.", ioe);
      return;
    }
    if (LOG.isDebugEnabled()) {
      LOG.debug("edit streams to load from: " + streams.size());
    }
    
    // Once we have streams to load, errors encountered are legitimate cause
    // for concern, so we don't catch them here. Simple errors reading from
    // disk are ignored.
    long editsLoaded = 0;
    try {
      editsLoaded = image.loadEdits(streams, namesystem, null);
    } catch (EditLogInputException elie) {
      editsLoaded = elie.getNumEditsLoaded();
      throw elie;
    } finally {
      if (editsLoaded > 0 || LOG.isDebugEnabled()) {
        LOG.info(String.format("Loaded %d edits starting from txid %d ",
            editsLoaded, lastTxnId));
      }
    }

    if (editsLoaded > 0) {
      lastLoadTimestamp = now();
    }
    lastLoadedTxnId = image.getLastAppliedTxId();
  } finally {
    namesystem.writeUnlock();
  }
}
 
开发者ID:ict-carch,项目名称:hadoop-plus,代码行数:55,代码来源:EditLogTailer.java



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java SunHttpJaxrsServer类代码示例发布时间:2022-05-22
下一篇:
Java JndiLocatorDelegate类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap