org.apache.hadoop.hdfs.server.namenode.ha.EditLogTailer的实例源码

项目:hadoop    文件FSNamesystem.java   
/**
 * Start services required in standby state 
 * 
 * @throws IOException
 */
void startStandbyServices(final Configuration conf) throws IOException {
  LOG.info("Starting services required for standby state");
  if (!getFSImage().editLog.isOpenForRead()) {
    // During startup,we're already open for read.
    getFSImage().editLog.initSharedJournalsForRead();
  }

  blockManager.setPostponeBlocksFromFuture(true);

  // disable quota checks while in standby.
  dir.disableQuotaChecks();
  editLogTailer = new EditLogTailer(this,conf);
  editLogTailer.start();
  if (standbyShouldCheckpoint) {
    standbyCheckpointer = new StandbyCheckpointer(conf,this);
    standbyCheckpointer.start();
  }
}
项目:aliyun-oss-hadoop-fs    文件FSNamesystem.java   
/**
 * Start services required in standby state 
 * 
 * @throws IOException
 */
void startStandbyServices(final Configuration conf) throws IOException {
  LOG.info("Starting services required for standby state");
  if (!getFSImage().editLog.isOpenForRead()) {
    // During startup,this);
    standbyCheckpointer.start();
  }
}
项目:big-c    文件FSNamesystem.java   
/**
 * Start services required in standby state 
 * 
 * @throws IOException
 */
void startStandbyServices(final Configuration conf) throws IOException {
  LOG.info("Starting services required for standby state");
  if (!getFSImage().editLog.isOpenForRead()) {
    // During startup,this);
    standbyCheckpointer.start();
  }
}
项目:hadoop-2.6.0-cdh5.4.3    文件FSNamesystem.java   
/**
 * Start services required in standby state 
 * 
 * @throws IOException
 */
void startStandbyServices(final Configuration conf) throws IOException {
  LOG.info("Starting services required for standby state");
  if (!getFSImage().editLog.isOpenForRead()) {
    // During startup,this);
    standbyCheckpointer.start();
  }
}
项目:hadoop-plus    文件FSNamesystem.java   
/**
 * Start services required in standby state 
 * 
 * @throws IOException
 */
void startStandbyServices(final Configuration conf) throws IOException {
  LOG.info("Starting services required for standby state");
  if (!dir.fsImage.editLog.isOpenForRead()) {
    // During startup,we're already open for read.
    dir.fsImage.editLog.initSharedJournalsForRead();
  }

  blockManager.setPostponeBlocksFromFuture(true);

  editLogTailer = new EditLogTailer(this,this);
    standbyCheckpointer.start();
  }
}
项目:FlexMap    文件FSNamesystem.java   
/**
 * Start services required in standby state 
 * 
 * @throws IOException
 */
void startStandbyServices(final Configuration conf) throws IOException {
  LOG.info("Starting services required for standby state");
  if (!getFSImage().editLog.isOpenForRead()) {
    // During startup,this);
    standbyCheckpointer.start();
  }
}
项目:hadoop-TCP    文件FSNamesystem.java   
/**
 * Start services required in standby state 
 * 
 * @throws IOException
 */
void startStandbyServices(final Configuration conf) throws IOException {
  LOG.info("Starting services required for standby state");
  if (!dir.fsImage.editLog.isOpenForRead()) {
    // During startup,this);
    standbyCheckpointer.start();
  }
}
项目:hardfs    文件FSNamesystem.java   
/**
 * Start services required in standby state 
 * 
 * @throws IOException
 */
void startStandbyServices(final Configuration conf) throws IOException {
  LOG.info("Starting services required for standby state");
  if (!dir.fsImage.editLog.isOpenForRead()) {
    // During startup,this);
    standbyCheckpointer.start();
  }
}
项目:hadoop-on-lustre2    文件FSNamesystem.java   
/**
 * Start services required in standby state 
 * 
 * @throws IOException
 */
void startStandbyServices(final Configuration conf) throws IOException {
  LOG.info("Starting services required for standby state");
  if (!dir.fsImage.editLog.isOpenForRead()) {
    // During startup,this);
    standbyCheckpointer.start();
  }
}
项目:hadoop    文件NameNodeAdapter.java   
public static FSEditLog spyOnEditLog(NameNode nn) {
  FSEditLog spyEditLog = spy(nn.getNamesystem().getFSImage().getEditLog());
  DFSTestUtil.setEditLogForTesting(nn.getNamesystem(),spyEditLog);
  EditLogTailer tailer = nn.getNamesystem().getEditLogTailer();
  if (tailer != null) {
    tailer.setEditLog(spyEditLog);
  }
  return spyEditLog;
}
项目:aliyun-oss-hadoop-fs    文件NameNodeAdapter.java   
public static FSEditLog spyOnEditLog(NameNode nn) {
  FSEditLog spyEditLog = spy(nn.getNamesystem().getFSImage().getEditLog());
  DFSTestUtil.setEditLogForTesting(nn.getNamesystem(),spyEditLog);
  EditLogTailer tailer = nn.getNamesystem().getEditLogTailer();
  if (tailer != null) {
    tailer.setEditLog(spyEditLog);
  }
  return spyEditLog;
}
项目:big-c    文件NameNodeAdapter.java   
public static FSEditLog spyOnEditLog(NameNode nn) {
  FSEditLog spyEditLog = spy(nn.getNamesystem().getFSImage().getEditLog());
  DFSTestUtil.setEditLogForTesting(nn.getNamesystem(),spyEditLog);
  EditLogTailer tailer = nn.getNamesystem().getEditLogTailer();
  if (tailer != null) {
    tailer.setEditLog(spyEditLog);
  }
  return spyEditLog;
}
项目:hadoop-2.6.0-cdh5.4.3    文件NameNodeAdapter.java   
public static FSEditLog spyOnEditLog(NameNode nn) {
  FSEditLog spyEditLog = spy(nn.getNamesystem().getFSImage().getEditLog());
  nn.getFSImage().setEditLogForTesting(spyEditLog);
  EditLogTailer tailer = nn.getNamesystem().getEditLogTailer();
  if (tailer != null) {
    tailer.setEditLog(spyEditLog);
  }
  return spyEditLog;
}
项目:FlexMap    文件NameNodeAdapter.java   
public static FSEditLog spyOnEditLog(NameNode nn) {
  FSEditLog spyEditLog = spy(nn.getNamesystem().getFSImage().getEditLog());
  nn.getFSImage().setEditLogForTesting(spyEditLog);
  EditLogTailer tailer = nn.getNamesystem().getEditLogTailer();
  if (tailer != null) {
    tailer.setEditLog(spyEditLog);
  }
  return spyEditLog;
}
项目:hadoop-on-lustre2    文件NameNodeAdapter.java   
public static FSEditLog spyOnEditLog(NameNode nn) {
  FSEditLog spyEditLog = spy(nn.getNamesystem().getFSImage().getEditLog());
  nn.getFSImage().setEditLogForTesting(spyEditLog);
  EditLogTailer tailer = nn.getNamesystem().getEditLogTailer();
  if (tailer != null) {
    tailer.setEditLog(spyEditLog);
  }
  return spyEditLog;
}
项目:hadoop    文件FSNamesystem.java   
@VisibleForTesting
public EditLogTailer getEditLogTailer() {
  return editLogTailer;
}
项目:hadoop    文件FSNamesystem.java   
@VisibleForTesting
public void setEditLogTailerForTests(EditLogTailer tailer) {
  this.editLogTailer = tailer;
}
项目:aliyun-oss-hadoop-fs    文件FSNamesystem.java   
@VisibleForTesting
public EditLogTailer getEditLogTailer() {
  return editLogTailer;
}
项目:aliyun-oss-hadoop-fs    文件FSNamesystem.java   
@VisibleForTesting
public void setEditLogTailerForTests(EditLogTailer tailer) {
  this.editLogTailer = tailer;
}
项目:big-c    文件FSNamesystem.java   
@VisibleForTesting
public EditLogTailer getEditLogTailer() {
  return editLogTailer;
}
项目:big-c    文件FSNamesystem.java   
@VisibleForTesting
public void setEditLogTailerForTests(EditLogTailer tailer) {
  this.editLogTailer = tailer;
}
项目:hadoop-2.6.0-cdh5.4.3    文件FSNamesystem.java   
@VisibleForTesting
public EditLogTailer getEditLogTailer() {
  return editLogTailer;
}
项目:hadoop-2.6.0-cdh5.4.3    文件FSNamesystem.java   
@VisibleForTesting
public void setEditLogTailerForTests(EditLogTailer tailer) {
  this.editLogTailer = tailer;
}
项目:hadoop-plus    文件FSNamesystem.java   
@VisibleForTesting
public EditLogTailer getEditLogTailer() {
  return editLogTailer;
}
项目:FlexMap    文件FSNamesystem.java   
@VisibleForTesting
public EditLogTailer getEditLogTailer() {
  return editLogTailer;
}
项目:FlexMap    文件FSNamesystem.java   
@VisibleForTesting
public void setEditLogTailerForTests(EditLogTailer tailer) {
  this.editLogTailer = tailer;
}
项目:hadoop-TCP    文件FSNamesystem.java   
@VisibleForTesting
public EditLogTailer getEditLogTailer() {
  return editLogTailer;
}
项目:hardfs    文件FSNamesystem.java   
@VisibleForTesting
public EditLogTailer getEditLogTailer() {
  return editLogTailer;
}
项目:hadoop-on-lustre2    文件FSNamesystem.java   
@VisibleForTesting
public EditLogTailer getEditLogTailer() {
  return editLogTailer;
}
项目:hadoop-on-lustre2    文件FSNamesystem.java   
@VisibleForTesting
public void setEditLogTailerForTests(EditLogTailer tailer) {
  this.editLogTailer = tailer;
}

相关文章

买水果
比较全面的redis工具类
gson 反序列化到多态子类
java 版本的 mb_strwidth
JAVA 反转字符串的最快方法,大概比StringBuffer.reverse()性...
com.google.gson.internal.bind.ArrayTypeAdapter的实例源码...