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

Java MetaMigrationRemovingHTD类代码示例

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

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



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

示例1: testMetaMigration

import org.apache.hadoop.hbase.catalog.MetaMigrationRemovingHTD; //导入依赖的package包/类
@Test
public void testMetaMigration() throws Exception {
  LOG.info("Starting testMetaWithLegacyHRI");
  final byte [] FAMILY = Bytes.toBytes("family");
  HTableDescriptor htd = new HTableDescriptor("testMetaMigration");
  HColumnDescriptor hcd = new HColumnDescriptor(FAMILY);
    htd.addFamily(hcd);
  Configuration conf = TEST_UTIL.getConfiguration();
  createMultiRegionsWithLegacyHRI(conf, htd, FAMILY,
      new byte[][]{
          HConstants.EMPTY_START_ROW,
          Bytes.toBytes("region_a"),
          Bytes.toBytes("region_b")});
  CatalogTracker ct =
    TEST_UTIL.getMiniHBaseCluster().getMaster().getCatalogTracker();
  // Erase the current version of root meta for this test.
  undoVersionInMeta();
  MetaReader.fullScanMetaAndPrint(ct);
  LOG.info("Meta Print completed.testUpdatesOnMetaWithLegacyHRI");

  Set<HTableDescriptor> htds =
    MetaMigrationRemovingHTD.updateMetaWithNewRegionInfo(
      TEST_UTIL.getHBaseCluster().getMaster());
  MetaReader.fullScanMetaAndPrint(ct);
  // Should be one entry only and it should be for the table we just added.
  assertEquals(1, htds.size());
  assertTrue(htds.contains(htd));
  // Assert that the flag in ROOT is updated to reflect the correct status
  boolean metaUpdated =
    MetaMigrationRemovingHTD.isMetaHRIUpdated(
      TEST_UTIL.getMiniHBaseCluster().getMaster());
  assertEquals(true, metaUpdated);
}
 
开发者ID:fengchen8086,项目名称:LCIndex-HBase-0.94.16,代码行数:34,代码来源:TestMetaMigrationRemovingHTD.java


示例2: testMasterCrashDuringMetaMigration

import org.apache.hadoop.hbase.catalog.MetaMigrationRemovingHTD; //导入依赖的package包/类
/**
 * This test assumes a master crash/failure during the meta migration process
 * and attempts to continue the meta migration process when a new master takes over.
 * When a master dies during the meta migration we will have some rows of
 * META.CatalogFamily updated with new HRI, (i.e HRI with out HTD) and some
 * still hanging with legacy HRI. (i.e HRI with HTD). When the backup master/ or
 * fresh start of master attempts the migration it will encouter some rows of META
 * already updated with new HRI and some still legacy. This test will simulate this
 * scenario and validates that the migration process can safely skip the updated
 * rows and migrate any pending rows at startup.
 * @throws Exception
 */
@Test
public void testMasterCrashDuringMetaMigration() throws Exception {
  final byte[] FAMILY = Bytes.toBytes("family");
  HTableDescriptor htd = new HTableDescriptor("testMasterCrashDuringMetaMigration");
  HColumnDescriptor hcd = new HColumnDescriptor(FAMILY);
    htd.addFamily(hcd);
  Configuration conf = TEST_UTIL.getConfiguration();
  // Create 10 New regions.
  createMultiRegionsWithNewHRI(conf, htd, FAMILY, 10);
  // Create 10 Legacy regions.
  createMultiRegionsWithLegacyHRI(conf, htd, FAMILY, 10);
  CatalogTracker ct =
    TEST_UTIL.getMiniHBaseCluster().getMaster().getCatalogTracker();
  // Erase the current version of root meta for this test.
  undoVersionInMeta();
  MetaMigrationRemovingHTD.updateRootWithMetaMigrationStatus(ct);
  //MetaReader.fullScanMetaAndPrint(ct);
  LOG.info("Meta Print completed.testUpdatesOnMetaWithLegacyHRI");

  Set<HTableDescriptor> htds =
    MetaMigrationRemovingHTD.updateMetaWithNewRegionInfo(
      TEST_UTIL.getHBaseCluster().getMaster());
  assertEquals(1, htds.size());
  assertTrue(htds.contains(htd));
  // Assert that the flag in ROOT is updated to reflect the correct status
  boolean metaUpdated = MetaMigrationRemovingHTD.
    isMetaHRIUpdated(TEST_UTIL.getMiniHBaseCluster().getMaster());
  assertEquals(true, metaUpdated);
  LOG.info("END testMetaWithLegacyHRI");
}
 
开发者ID:fengchen8086,项目名称:LCIndex-HBase-0.94.16,代码行数:43,代码来源:TestMetaMigrationRemovingHTD.java


示例3: testMetaUpdatedFlagInROOT

import org.apache.hadoop.hbase.catalog.MetaMigrationRemovingHTD; //导入依赖的package包/类
@Test
public void testMetaUpdatedFlagInROOT() throws Exception {
  boolean metaUpdated = MetaMigrationRemovingHTD.
    isMetaHRIUpdated(TEST_UTIL.getMiniHBaseCluster().getMaster());
  assertEquals(true, metaUpdated);
}
 
开发者ID:fengchen8086,项目名称:LCIndex-HBase-0.94.16,代码行数:7,代码来源:TestMetaMigrationRemovingHTD.java



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

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