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


Java ExportSnapshot.innerMain方法代码示例

本文整理汇总了Java中org.apache.hadoop.hbase.snapshot.ExportSnapshot.innerMain方法的典型用法代码示例。如果您正苦于以下问题:Java ExportSnapshot.innerMain方法的具体用法?Java ExportSnapshot.innerMain怎么用?Java ExportSnapshot.innerMain使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.hadoop.hbase.snapshot.ExportSnapshot的用法示例。


在下文中一共展示了ExportSnapshot.innerMain方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: testExportFileSystemState

import org.apache.hadoop.hbase.snapshot.ExportSnapshot; //导入方法依赖的package包/类
/**
 * Test ExportSnapshot
 */
private void testExportFileSystemState(final byte[] tableName, final byte[] snapshotName,
    int filesExpected) throws Exception {
  Path copyDir = TEST_UTIL.getDataTestDir("export-" + System.currentTimeMillis());
  URI hdfsUri = FileSystem.get(TEST_UTIL.getConfiguration()).getUri();
  FileSystem fs = FileSystem.get(copyDir.toUri(), new Configuration());
  copyDir = copyDir.makeQualified(fs);

  // Export Snapshot
  int res = ExportSnapshot.innerMain(TEST_UTIL.getConfiguration(), new String[] {
    "-snapshot", Bytes.toString(snapshotName),
    "-copy-to", copyDir.toString()
  });
  assertEquals(0, res);

  // Verify File-System state
  FileStatus[] rootFiles = fs.listStatus(copyDir);
  assertEquals(filesExpected, rootFiles.length);
  for (FileStatus fileStatus: rootFiles) {
    String name = fileStatus.getPath().getName();
    assertTrue(fileStatus.isDir());
    assertTrue(name.equals(HConstants.SNAPSHOT_DIR_NAME) || name.equals(".archive"));
  }

  // compare the snapshot metadata and verify the hfiles
  final FileSystem hdfs = FileSystem.get(hdfsUri, TEST_UTIL.getConfiguration());
  final Path snapshotDir = new Path(HConstants.SNAPSHOT_DIR_NAME, Bytes.toString(snapshotName));
  verifySnapshot(hdfs, new Path(TEST_UTIL.getDefaultRootDirPath(), snapshotDir),
      fs, new Path(copyDir, snapshotDir));
  verifyArchive(fs, copyDir, tableName, Bytes.toString(snapshotName));
  FSUtils.logFileSystemState(hdfs, snapshotDir, LOG);

  // Remove the exported dir
  fs.delete(copyDir, true);
}
 
开发者ID:fengchen8086,项目名称:LCIndex-HBase-0.94.16,代码行数:38,代码来源:TestExportSnapshot.java


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