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


Java HFileLinkCleaner类代码示例

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


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

示例1: checkSnapshotSupport

import org.apache.hadoop.hbase.master.cleaner.HFileLinkCleaner; //导入依赖的package包/类
/**
 * Called at startup, to verify if snapshot operation is supported, and to avoid
 * starting the master if there're snapshots present but the cleaners needed are missing.
 * Otherwise we can end up with snapshot data loss.
 * @param conf The {@link Configuration} object to use
 * @param mfs The MasterFileSystem to use
 * @throws IOException in case of file-system operation failure
 * @throws UnsupportedOperationException in case cleaners are missing and
 *         there're snapshot in the system
 */
private void checkSnapshotSupport(final Configuration conf, final MasterFileSystem mfs)
    throws IOException, UnsupportedOperationException {
  // Verify if snapshot is disabled by the user
  String enabled = conf.get(HBASE_SNAPSHOT_ENABLED);
  boolean snapshotEnabled = conf.getBoolean(HBASE_SNAPSHOT_ENABLED, false);
  boolean userDisabled = (enabled != null && enabled.trim().length() > 0 && !snapshotEnabled);

  // Extract cleaners from conf
  Set<String> hfileCleaners = new HashSet<String>();
  String[] cleaners = conf.getStrings(HFileCleaner.MASTER_HFILE_CLEANER_PLUGINS);
  if (cleaners != null) Collections.addAll(hfileCleaners, cleaners);

  Set<String> logCleaners = new HashSet<String>();
  cleaners = conf.getStrings(HConstants.HBASE_MASTER_LOGCLEANER_PLUGINS);
  if (cleaners != null) Collections.addAll(logCleaners, cleaners);

  // check if an older version of snapshot directory was present
  Path oldSnapshotDir = new Path(mfs.getRootDir(), HConstants.OLD_SNAPSHOT_DIR_NAME);
  FileSystem fs = mfs.getFileSystem();
  List<SnapshotDescription> ss = getCompletedSnapshots(new Path(rootDir, oldSnapshotDir));
  if (ss != null && !ss.isEmpty()) {
    LOG.error("Snapshots from an earlier release were found under: " + oldSnapshotDir);
    LOG.error("Please rename the directory as " + HConstants.SNAPSHOT_DIR_NAME);
  }

  // If the user has enabled the snapshot, we force the cleaners to be present
  // otherwise we still need to check if cleaners are enabled or not and verify
  // that there're no snapshot in the .snapshot folder.
  if (snapshotEnabled) {
    // Inject snapshot cleaners, if snapshot.enable is true
    hfileCleaners.add(SnapshotHFileCleaner.class.getName());
    hfileCleaners.add(HFileLinkCleaner.class.getName());
    logCleaners.add(SnapshotLogCleaner.class.getName());

    // Set cleaners conf
    conf.setStrings(HFileCleaner.MASTER_HFILE_CLEANER_PLUGINS,
      hfileCleaners.toArray(new String[hfileCleaners.size()]));
    conf.setStrings(HConstants.HBASE_MASTER_LOGCLEANER_PLUGINS,
      logCleaners.toArray(new String[logCleaners.size()]));
  } else {
    // Verify if cleaners are present
    snapshotEnabled = logCleaners.contains(SnapshotLogCleaner.class.getName()) &&
      hfileCleaners.contains(SnapshotHFileCleaner.class.getName()) &&
      hfileCleaners.contains(HFileLinkCleaner.class.getName());

    // Warn if the cleaners are enabled but the snapshot.enabled property is false/not set.
    if (snapshotEnabled) {
      LOG.warn("Snapshot log and hfile cleaners are present in the configuration, " +
        "but the '" + HBASE_SNAPSHOT_ENABLED + "' property " +
        (userDisabled ? "is set to 'false'." : "is not set."));
    }
  }

  // Mark snapshot feature as enabled if cleaners are present and user has not disabled it.
  this.isSnapshotSupported = snapshotEnabled && !userDisabled;

  // If cleaners are not enabled, verify that there're no snapshot in the .snapshot folder
  // otherwise we end up with snapshot data loss.
  if (!snapshotEnabled) {
    LOG.info("Snapshot feature is not enabled, missing log and hfile cleaners.");
    Path snapshotDir = SnapshotDescriptionUtils.getSnapshotsDir(mfs.getRootDir());
    if (fs.exists(snapshotDir)) {
      FileStatus[] snapshots = FSUtils.listStatus(fs, snapshotDir,
        new SnapshotDescriptionUtils.CompletedSnaphotDirectoriesFilter(fs));
      if (snapshots != null) {
        LOG.error("Snapshots are present, but cleaners are not enabled.");
        checkSnapshotSupport();
      }
    }
  }
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:82,代码来源:SnapshotManager.java

示例2: testSnapshotSupportConfiguration

import org.apache.hadoop.hbase.master.cleaner.HFileLinkCleaner; //导入依赖的package包/类
/**
 * Verify the snapshot support based on the configuration.
 */
@Test
public void testSnapshotSupportConfiguration() throws Exception {
  // No configuration (no cleaners, not enabled): snapshot feature disabled
  Configuration conf = new Configuration();
  SnapshotManager manager = getNewManager(conf);
  assertFalse("Snapshot should be disabled with no configuration", isSnapshotSupported(manager));

  // force snapshot feature to be enabled
  conf = new Configuration();
  conf.setBoolean(SnapshotManager.HBASE_SNAPSHOT_ENABLED, true);
  manager = getNewManager(conf);
  assertTrue("Snapshot should be enabled", isSnapshotSupported(manager));

  // force snapshot feature to be disabled
  conf = new Configuration();
  conf.setBoolean(SnapshotManager.HBASE_SNAPSHOT_ENABLED, false);
  manager = getNewManager(conf);
  assertFalse("Snapshot should be disabled", isSnapshotSupported(manager));

  // force snapshot feature to be disabled, even if cleaners are present
  conf = new Configuration();
  conf.setStrings(HFileCleaner.MASTER_HFILE_CLEANER_PLUGINS,
    SnapshotHFileCleaner.class.getName(), HFileLinkCleaner.class.getName());
  conf.set(HConstants.HBASE_MASTER_LOGCLEANER_PLUGINS, SnapshotLogCleaner.class.getName());
  conf.setBoolean(SnapshotManager.HBASE_SNAPSHOT_ENABLED, false);
  manager = getNewManager(conf);
  assertFalse("Snapshot should be disabled", isSnapshotSupported(manager));

  // cleaners are present, but missing snapshot enabled property
  conf = new Configuration();
  conf.setStrings(HFileCleaner.MASTER_HFILE_CLEANER_PLUGINS,
    SnapshotHFileCleaner.class.getName(), HFileLinkCleaner.class.getName());
  conf.set(HConstants.HBASE_MASTER_LOGCLEANER_PLUGINS, SnapshotLogCleaner.class.getName());
  manager = getNewManager(conf);
  assertTrue("Snapshot should be enabled, because cleaners are present",
    isSnapshotSupported(manager));

  // Create a "test snapshot"
  Path rootDir = UTIL.getDataTestDir();
  Path testSnapshotDir = SnapshotDescriptionUtils.getCompletedSnapshotDir(
    "testSnapshotSupportConfiguration", rootDir);
  fs.mkdirs(testSnapshotDir);
  try {
    // force snapshot feature to be disabled, but snapshots are present
    conf = new Configuration();
    conf.setBoolean(SnapshotManager.HBASE_SNAPSHOT_ENABLED, false);
    manager = getNewManager(conf);
    fail("Master should not start when snapshot is disabled, but snapshots are present");
  } catch (UnsupportedOperationException e) {
    // expected
  } finally {
    fs.delete(testSnapshotDir, true);
  }
}
 
开发者ID:fengchen8086,项目名称:LCIndex-HBase-0.94.16,代码行数:58,代码来源:TestSnapshotManager.java

示例3: checkSnapshotSupport

import org.apache.hadoop.hbase.master.cleaner.HFileLinkCleaner; //导入依赖的package包/类
/**
 * Called at startup, to verify if snapshot operation is supported, and to avoid
 * starting the master if there're snapshots present but the cleaners needed are missing.
 * Otherwise we can end up with snapshot data loss.
 * @param conf The {@link Configuration} object to use
 * @param mfs The MasterFileSystem to use
 * @throws IOException in case of file-system operation failure
 * @throws UnsupportedOperationException in case cleaners are missing and
 *         there're snapshot in the system
 */
private void checkSnapshotSupport(final Configuration conf, final MasterFileSystem mfs)
    throws IOException, UnsupportedOperationException {
  // Verify if snapshot is disabled by the user
  String enabled = conf.get(HBASE_SNAPSHOT_ENABLED);
  boolean snapshotEnabled = conf.getBoolean(HBASE_SNAPSHOT_ENABLED, false);
  boolean userDisabled = (enabled != null && enabled.trim().length() > 0 && !snapshotEnabled);

  // Extract cleaners from conf
  Set<String> hfileCleaners = new HashSet<>();
  String[] cleaners = conf.getStrings(HFileCleaner.MASTER_HFILE_CLEANER_PLUGINS);
  if (cleaners != null) Collections.addAll(hfileCleaners, cleaners);

  Set<String> logCleaners = new HashSet<>();
  cleaners = conf.getStrings(HConstants.HBASE_MASTER_LOGCLEANER_PLUGINS);
  if (cleaners != null) Collections.addAll(logCleaners, cleaners);

  // check if an older version of snapshot directory was present
  Path oldSnapshotDir = new Path(mfs.getRootDir(), HConstants.OLD_SNAPSHOT_DIR_NAME);
  FileSystem fs = mfs.getFileSystem();
  List<SnapshotDescription> ss = getCompletedSnapshots(new Path(rootDir, oldSnapshotDir), false);
  if (ss != null && !ss.isEmpty()) {
    LOG.error("Snapshots from an earlier release were found under: " + oldSnapshotDir);
    LOG.error("Please rename the directory as " + HConstants.SNAPSHOT_DIR_NAME);
  }

  // If the user has enabled the snapshot, we force the cleaners to be present
  // otherwise we still need to check if cleaners are enabled or not and verify
  // that there're no snapshot in the .snapshot folder.
  if (snapshotEnabled) {
    // Inject snapshot cleaners, if snapshot.enable is true
    hfileCleaners.add(SnapshotHFileCleaner.class.getName());
    hfileCleaners.add(HFileLinkCleaner.class.getName());

    // Set cleaners conf
    conf.setStrings(HFileCleaner.MASTER_HFILE_CLEANER_PLUGINS,
      hfileCleaners.toArray(new String[hfileCleaners.size()]));
    conf.setStrings(HConstants.HBASE_MASTER_LOGCLEANER_PLUGINS,
      logCleaners.toArray(new String[logCleaners.size()]));
  } else {
    // Verify if cleaners are present
    snapshotEnabled =
      hfileCleaners.contains(SnapshotHFileCleaner.class.getName()) &&
      hfileCleaners.contains(HFileLinkCleaner.class.getName());

    // Warn if the cleaners are enabled but the snapshot.enabled property is false/not set.
    if (snapshotEnabled) {
      LOG.warn("Snapshot log and hfile cleaners are present in the configuration, " +
        "but the '" + HBASE_SNAPSHOT_ENABLED + "' property " +
        (userDisabled ? "is set to 'false'." : "is not set."));
    }
  }

  // Mark snapshot feature as enabled if cleaners are present and user has not disabled it.
  this.isSnapshotSupported = snapshotEnabled && !userDisabled;

  // If cleaners are not enabled, verify that there're no snapshot in the .snapshot folder
  // otherwise we end up with snapshot data loss.
  if (!snapshotEnabled) {
    LOG.info("Snapshot feature is not enabled, missing log and hfile cleaners.");
    Path snapshotDir = SnapshotDescriptionUtils.getSnapshotsDir(mfs.getRootDir());
    if (fs.exists(snapshotDir)) {
      FileStatus[] snapshots = FSUtils.listStatus(fs, snapshotDir,
        new SnapshotDescriptionUtils.CompletedSnaphotDirectoriesFilter(fs));
      if (snapshots != null) {
        LOG.error("Snapshots are present, but cleaners are not enabled.");
        checkSnapshotSupport();
      }
    }
  }
}
 
开发者ID:apache,项目名称:hbase,代码行数:81,代码来源:SnapshotManager.java

示例4: testSnapshotSupportConfiguration

import org.apache.hadoop.hbase.master.cleaner.HFileLinkCleaner; //导入依赖的package包/类
/**
 * Verify the snapshot support based on the configuration.
 */
@Test
public void testSnapshotSupportConfiguration() throws Exception {
  // No configuration (no cleaners, not enabled): snapshot feature disabled
  Configuration conf = new Configuration();
  SnapshotManager manager = getNewManager(conf);
  assertFalse("Snapshot should be disabled with no configuration", isSnapshotSupported(manager));

  // force snapshot feature to be enabled
  conf = new Configuration();
  conf.setBoolean(SnapshotManager.HBASE_SNAPSHOT_ENABLED, true);
  manager = getNewManager(conf);
  assertTrue("Snapshot should be enabled", isSnapshotSupported(manager));

  // force snapshot feature to be disabled
  conf = new Configuration();
  conf.setBoolean(SnapshotManager.HBASE_SNAPSHOT_ENABLED, false);
  manager = getNewManager(conf);
  assertFalse("Snapshot should be disabled", isSnapshotSupported(manager));

  // force snapshot feature to be disabled, even if cleaners are present
  conf = new Configuration();
  conf.setStrings(HFileCleaner.MASTER_HFILE_CLEANER_PLUGINS,
    SnapshotHFileCleaner.class.getName(), HFileLinkCleaner.class.getName());
  conf.setBoolean(SnapshotManager.HBASE_SNAPSHOT_ENABLED, false);
  manager = getNewManager(conf);
  assertFalse("Snapshot should be disabled", isSnapshotSupported(manager));

  // cleaners are present, but missing snapshot enabled property
  conf = new Configuration();
  conf.setStrings(HFileCleaner.MASTER_HFILE_CLEANER_PLUGINS,
    SnapshotHFileCleaner.class.getName(), HFileLinkCleaner.class.getName());
  manager = getNewManager(conf);
  assertTrue("Snapshot should be enabled, because cleaners are present",
    isSnapshotSupported(manager));

  // Create a "test snapshot"
  Path rootDir = UTIL.getDataTestDir();
  Path testSnapshotDir = SnapshotDescriptionUtils.getCompletedSnapshotDir(
    "testSnapshotSupportConfiguration", rootDir);
  fs.mkdirs(testSnapshotDir);
  try {
    // force snapshot feature to be disabled, but snapshots are present
    conf = new Configuration();
    conf.setBoolean(SnapshotManager.HBASE_SNAPSHOT_ENABLED, false);
    manager = getNewManager(conf);
    fail("Master should not start when snapshot is disabled, but snapshots are present");
  } catch (UnsupportedOperationException e) {
    // expected
  } finally {
    fs.delete(testSnapshotDir, true);
  }
}
 
开发者ID:apache,项目名称:hbase,代码行数:56,代码来源:TestSnapshotManager.java


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