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

Java FSImageTestUtil类代码示例

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

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



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

示例1: checkResultNameNode

import org.apache.hadoop.hdfs.server.namenode.FSImageTestUtil; //导入依赖的package包/类
/**
 * For NameNode, verify that the current and/or previous exist as indicated by 
 * the method parameters.  If previous exists, verify that
 * it hasn't been modified by comparing the checksum of all it's
 * containing files with their original checksum.  It is assumed that
 * the server has recovered.
 */
void checkResultNameNode(String[] baseDirs, 
                 boolean currentShouldExist, boolean previousShouldExist) 
  throws IOException
{
  if (currentShouldExist) {
    for (int i = 0; i < baseDirs.length; i++) {
      assertTrue(new File(baseDirs[i],"current").isDirectory());
      assertTrue(new File(baseDirs[i],"current/VERSION").isFile());
      assertNotNull(FSImageTestUtil.findNewestImageFile(
          baseDirs[i] + "/current"));
      assertTrue(new File(baseDirs[i],"current/seen_txid").isFile());
    }
  }
  if (previousShouldExist) {
    for (int i = 0; i < baseDirs.length; i++) {
      assertTrue(new File(baseDirs[i],"previous").isDirectory());
      assertEquals(
                   UpgradeUtilities.checksumContents(
                   NAME_NODE, new File(baseDirs[i],"previous"), false),
                   UpgradeUtilities.checksumMasterNameNodeContents());
    }
  }
}
 
开发者ID:naver,项目名称:hadoop,代码行数:31,代码来源:TestDFSStorageStateRecovery.java


示例2: waitForCheckpoint

import org.apache.hadoop.hdfs.server.namenode.FSImageTestUtil; //导入依赖的package包/类
public static void waitForCheckpoint(MiniDFSCluster cluster, int nnIdx,
    List<Integer> txids) throws InterruptedException {
  long start = Time.now();
  while (true) {
    try {
      FSImageTestUtil.assertNNHasCheckpoints(cluster, nnIdx, txids);
      return;
    } catch (AssertionError err) {
      if (Time.now() - start > 10000) {
        throw err;
      } else {
        Thread.sleep(300);
      }
    }
  }
}
 
开发者ID:naver,项目名称:hadoop,代码行数:17,代码来源:HATestUtil.java


示例3: testBootstrapStandbyWithStandbyNN

import org.apache.hadoop.hdfs.server.namenode.FSImageTestUtil; //导入依赖的package包/类
/** BootstrapStandby when the existing NN is standby */
@Test
public void testBootstrapStandbyWithStandbyNN() throws Exception {
  // make the first NN in standby state
  cluster.transitionToStandby(0);
  Configuration confNN1 = cluster.getConfiguration(1);
  
  // shut down nn1
  cluster.shutdownNameNode(1);
  
  int rc = BootstrapStandby.run(new String[] { "-force" }, confNN1);
  assertEquals(0, rc);
  
  // Should have copied over the namespace from the standby
  FSImageTestUtil.assertNNHasCheckpoints(cluster, 1,
      ImmutableList.of(0));
  FSImageTestUtil.assertNNFilesMatch(cluster);
}
 
开发者ID:naver,项目名称:hadoop,代码行数:19,代码来源:TestBootstrapStandbyWithQJM.java


示例4: testBootstrapStandbyWithActiveNN

import org.apache.hadoop.hdfs.server.namenode.FSImageTestUtil; //导入依赖的package包/类
/** BootstrapStandby when the existing NN is active */
@Test
public void testBootstrapStandbyWithActiveNN() throws Exception {
  // make the first NN in active state
  cluster.transitionToActive(0);
  Configuration confNN1 = cluster.getConfiguration(1);
  
  // shut down nn1
  cluster.shutdownNameNode(1);
  
  int rc = BootstrapStandby.run(new String[] { "-force" }, confNN1);
  assertEquals(0, rc);
  
  // Should have copied over the namespace from the standby
  FSImageTestUtil.assertNNHasCheckpoints(cluster, 1,
      ImmutableList.of(0));
  FSImageTestUtil.assertNNFilesMatch(cluster);
}
 
开发者ID:naver,项目名称:hadoop,代码行数:19,代码来源:TestBootstrapStandbyWithQJM.java


示例5: checkResult

import org.apache.hadoop.hdfs.server.namenode.FSImageTestUtil; //导入依赖的package包/类
/**
 * Verify that the new current directory is the old previous.  
 * It is assumed that the server has recovered and rolled back.
 */
void checkResult(NodeType nodeType, String[] baseDirs) throws Exception {
  List<File> curDirs = Lists.newArrayList();
  for (String baseDir : baseDirs) {
    File curDir = new File(baseDir, "current");
    curDirs.add(curDir);
    switch (nodeType) {
    case NAME_NODE:
      FSImageTestUtil.assertReasonableNameCurrentDir(curDir);
      break;
    case DATA_NODE:
      assertEquals(
          UpgradeUtilities.checksumContents(nodeType, curDir, false),
          UpgradeUtilities.checksumMasterDataNodeContents());
      break;
    }
  }
  
  FSImageTestUtil.assertParallelFilesAreIdentical(
      curDirs, Collections.<String>emptySet());

  for (int i = 0; i < baseDirs.length; i++) {
    assertFalse(new File(baseDirs[i],"previous").isDirectory());
  }
}
 
开发者ID:naver,项目名称:hadoop,代码行数:29,代码来源:TestDFSRollback.java


示例6: bootstrapStandbys

import org.apache.hadoop.hdfs.server.namenode.FSImageTestUtil; //导入依赖的package包/类
private void bootstrapStandbys() throws Exception {
  // shutdown and bootstrap all the other nns, except the first (start 1, not 0)
  for (int i = 1; i < nnCount; i++) {
    Configuration otherNNConf = cluster.getConfiguration(i);

    // shut down other nn
    cluster.shutdownNameNode(i);

    int rc = BootstrapStandby.run(new String[] { "-force" }, otherNNConf);
    assertEquals(0, rc);

    // Should have copied over the namespace from the standby
    FSImageTestUtil.assertNNHasCheckpoints(cluster, i, ImmutableList.of(0));
  }
  FSImageTestUtil.assertNNFilesMatch(cluster);
}
 
开发者ID:aliyun-beta,项目名称:aliyun-oss-hadoop-fs,代码行数:17,代码来源:TestBootstrapStandbyWithQJM.java


示例7: testOfflineImageViewer

import org.apache.hadoop.hdfs.server.namenode.FSImageTestUtil; //导入依赖的package包/类
/**
 * Test if the OfflineImageViewerPB can correctly parse a fsimage containing
 * snapshots
 */
@Test
public void testOfflineImageViewer() throws Exception {
  runTestSnapshot(1);
  
  // retrieve the fsimage. Note that we already save namespace to fsimage at
  // the end of each iteration of runTestSnapshot.
  File originalFsimage = FSImageTestUtil.findLatestImageFile(
      FSImageTestUtil.getFSImage(
      cluster.getNameNode()).getStorage().getStorageDir(0));
  assertNotNull("Didn't generate or can't find fsimage", originalFsimage);
  StringWriter output = new StringWriter();
  PrintWriter o = new PrintWriter(output);
  PBImageXmlWriter v = new PBImageXmlWriter(new Configuration(), o);
  v.visit(new RandomAccessFile(originalFsimage, "r"));
}
 
开发者ID:Nextzero,项目名称:hadoop-2.6.0-cdh5.4.3,代码行数:20,代码来源:TestSnapshot.java


示例8: checkResultNameNode

import org.apache.hadoop.hdfs.server.namenode.FSImageTestUtil; //导入依赖的package包/类
/**
 * For NameNode, verify that the current and/or previous exist as indicated by 
 * the method parameters.  If previous exists, verify that
 * it hasn't been modified by comparing the checksum of all it's
 * containing files with their original checksum.  It is assumed that
 * the server has recovered.
 */
void checkResultNameNode(String[] baseDirs, 
                 boolean currentShouldExist, boolean previousShouldExist) 
  throws IOException
{
  if (currentShouldExist) {
    for (int i = 0; i < baseDirs.length; i++) {
      assertTrue(new File(baseDirs[i],"current").isDirectory());
      assertTrue(new File(baseDirs[i],"current/VERSION").isFile());
      assertNotNull(FSImageTestUtil.findNewestImageFile(
          baseDirs[i] + "/current"));
      assertTrue(new File(baseDirs[i],"current/seen_txid").isFile());
    }
  }
  if (previousShouldExist) {
    for (int i = 0; i < baseDirs.length; i++) {
      assertTrue(new File(baseDirs[i],"previous").isDirectory());
      assertEquals(
                   UpgradeUtilities.checksumContents(
                                                     NAME_NODE, new File(baseDirs[i],"previous")),
                   UpgradeUtilities.checksumMasterNameNodeContents());
    }
  }
}
 
开发者ID:ict-carch,项目名称:hadoop-plus,代码行数:31,代码来源:TestDFSStorageStateRecovery.java


示例9: checkResult

import org.apache.hadoop.hdfs.server.namenode.FSImageTestUtil; //导入依赖的package包/类
/**
 * Verify that the current directory exists and that the previous directory
 * does not exist.  Verify that current hasn't been modified by comparing 
 * the checksum of all it's containing files with their original checksum.
 * Note that we do not check that previous is removed on the DataNode
 * because its removal is asynchronous therefore we have no reliable
 * way to know when it will happen.  
 */
static void checkResult(String[] nameNodeDirs, String[] dataNodeDirs) throws Exception {
  List<File> dirs = Lists.newArrayList();
  for (int i = 0; i < nameNodeDirs.length; i++) {
    File curDir = new File(nameNodeDirs[i], "current");
    dirs.add(curDir);
    FSImageTestUtil.assertReasonableNameCurrentDir(curDir);
  }
  
  FSImageTestUtil.assertParallelFilesAreIdentical(
      dirs, Collections.<String>emptySet());
  
  for (int i = 0; i < dataNodeDirs.length; i++) {
    assertEquals(
                 UpgradeUtilities.checksumContents(
                                                   DATA_NODE, new File(dataNodeDirs[i],"current")),
                 UpgradeUtilities.checksumMasterDataNodeContents());
  }
  for (int i = 0; i < nameNodeDirs.length; i++) {
    assertFalse(new File(nameNodeDirs[i],"previous").isDirectory());
  }
}
 
开发者ID:ict-carch,项目名称:hadoop-plus,代码行数:30,代码来源:TestDFSFinalize.java


示例10: testBothNodesInStandbyState

import org.apache.hadoop.hdfs.server.namenode.FSImageTestUtil; //导入依赖的package包/类
/**
 * Test for the case when both of the NNs in the cluster are
 * in the standby state, and thus are both creating checkpoints
 * and uploading them to each other.
 * In this circumstance, they should receive the error from the
 * other node indicating that the other node already has a
 * checkpoint for the given txid, but this should not cause
 * an abort, etc.
 */
@Test
public void testBothNodesInStandbyState() throws Exception {
  doEdits(0, 10);
  
  cluster.transitionToStandby(0);

  // Transitioning to standby closed the edit log on the active,
  // so the standby will catch up. Then, both will be in standby mode
  // with enough uncheckpointed txns to cause a checkpoint, and they
  // will each try to take a checkpoint and upload to each other.
  HATestUtil.waitForCheckpoint(cluster, 1, ImmutableList.of(12));
  HATestUtil.waitForCheckpoint(cluster, 0, ImmutableList.of(12));
  
  assertEquals(12, nn0.getNamesystem().getFSImage()
      .getMostRecentCheckpointTxId());
  assertEquals(12, nn1.getNamesystem().getFSImage()
      .getMostRecentCheckpointTxId());
  
  List<File> dirs = Lists.newArrayList();
  dirs.addAll(FSImageTestUtil.getNameNodeCurrentDirs(cluster, 0));
  dirs.addAll(FSImageTestUtil.getNameNodeCurrentDirs(cluster, 1));
  FSImageTestUtil.assertParallelFilesAreIdentical(dirs, ImmutableSet.<String>of());
}
 
开发者ID:ict-carch,项目名称:hadoop-plus,代码行数:33,代码来源:TestStandbyCheckpoints.java


示例11: checkResult

import org.apache.hadoop.hdfs.server.namenode.FSImageTestUtil; //导入依赖的package包/类
/**
 * Verify that the new current directory is the old previous.  
 * It is assumed that the server has recovered and rolled back.
 */
void checkResult(NodeType nodeType, String[] baseDirs) throws Exception {
  List<File> curDirs = Lists.newArrayList();
  for (String baseDir : baseDirs) {
    File curDir = new File(baseDir, "current");
    curDirs.add(curDir);
    switch (nodeType) {
    case NAME_NODE:
      FSImageTestUtil.assertReasonableNameCurrentDir(curDir);
      break;
    case DATA_NODE:
      assertEquals(
          UpgradeUtilities.checksumContents(nodeType, curDir),
          UpgradeUtilities.checksumMasterDataNodeContents());
      break;
    }
  }
  
  FSImageTestUtil.assertParallelFilesAreIdentical(
      curDirs, Collections.<String>emptySet());

  for (int i = 0; i < baseDirs.length; i++) {
    assertFalse(new File(baseDirs[i],"previous").isDirectory());
  }
}
 
开发者ID:ict-carch,项目名称:hadoop-plus,代码行数:29,代码来源:TestDFSRollback.java



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
上一篇:
Java FastLeaderElection类代码示例发布时间:2022-05-22
下一篇:
Java SnmpAccessControlModel类代码示例发布时间: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