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


Java ChecksumUtil.generateExceptionForChecksumFailureForTest方法代码示例

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


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

示例1: HBaseTestingUtility

import org.apache.hadoop.hbase.io.hfile.ChecksumUtil; //导入方法依赖的package包/类
public HBaseTestingUtility(Configuration conf) {
  this.conf = conf;

  // a hbase checksum verification failure will cause unit tests to fail
  ChecksumUtil.generateExceptionForChecksumFailureForTest(true);
  setHDFSClientRetryProperty();
}
 
开发者ID:fengchen8086,项目名称:LCIndex-HBase-0.94.16,代码行数:8,代码来源:HBaseTestingUtility.java

示例2: HBaseTestingUtility

import org.apache.hadoop.hbase.io.hfile.ChecksumUtil; //导入方法依赖的package包/类
/**
 * <p>Create an HBaseTestingUtility using a given configuration.
 *
 * <p>Initially, all tmp files are written to a local test data directory.
 * Once {@link #startMiniDFSCluster} is called, either directly or via
 * {@link #startMiniCluster()}, tmp data will be written to the DFS directory instead.
 *
 * <p>Previously, there was a distinction between the type of utility returned by
 * {@link #createLocalHTU()} and this constructor; this is no longer the case. All
 * HBaseTestingUtility objects will behave as local until a DFS cluster is started,
 * at which point they will switch to using mini DFS for storage.
 *
 * @param conf The configuration to use for further operations
 */
public HBaseTestingUtility(@Nullable Configuration conf) {
  super(conf);

  // a hbase checksum verification failure will cause unit tests to fail
  ChecksumUtil.generateExceptionForChecksumFailureForTest(true);

  // if conf is provided, prevent contention for ports if other hbase thread(s) are running
  if (conf != null) {
    if (conf.getInt(HConstants.MASTER_INFO_PORT, HConstants.DEFAULT_MASTER_INFOPORT)
            == HConstants.DEFAULT_MASTER_INFOPORT) {
      conf.setInt(HConstants.MASTER_INFO_PORT, -1);
      LOG.debug("Config property {} changed to -1", HConstants.MASTER_INFO_PORT);
    }
    if (conf.getInt(HConstants.REGIONSERVER_PORT, HConstants.DEFAULT_REGIONSERVER_PORT)
            == HConstants.DEFAULT_REGIONSERVER_PORT) {
      conf.setInt(HConstants.REGIONSERVER_PORT, -1);
      LOG.debug("Config property {} changed to -1", HConstants.REGIONSERVER_PORT);
    }
  }

  // Every cluster is a local cluster until we start DFS
  // Note that conf could be null, but this.conf will not be
  String dataTestDir = getDataTestDir().toString();
  this.conf.set("fs.defaultFS","file:///");
  this.conf.set(HConstants.HBASE_DIR, "file://" + dataTestDir);
  LOG.debug("Setting {} to {}", HConstants.HBASE_DIR, dataTestDir);
  this.conf.setBoolean(CommonFSUtils.UNSAFE_STREAM_CAPABILITY_ENFORCE,false);
}
 
开发者ID:apache,项目名称:hbase,代码行数:43,代码来源:HBaseTestingUtility.java

示例3: HBaseTestingUtility

import org.apache.hadoop.hbase.io.hfile.ChecksumUtil; //导入方法依赖的package包/类
public HBaseTestingUtility(Configuration conf) {
  super(conf);

  // a hbase checksum verification failure will cause unit tests to fail
  ChecksumUtil.generateExceptionForChecksumFailureForTest(true);
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:7,代码来源:HBaseTestingUtility.java

示例4: HBaseTestingUtility

import org.apache.hadoop.hbase.io.hfile.ChecksumUtil; //导入方法依赖的package包/类
public HBaseTestingUtility(Configuration conf) {
  this.conf = conf;

  // a hbase checksum verification failure will cause unit tests to fail
  ChecksumUtil.generateExceptionForChecksumFailureForTest(true);
}
 
开发者ID:daidong,项目名称:DominoHBase,代码行数:7,代码来源:HBaseTestingUtility.java


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