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


Java MultiRowMutationEndpoint类代码示例

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


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

示例1: setUpBeforeClass

import org.apache.hadoop.hbase.coprocessor.MultiRowMutationEndpoint; //导入依赖的package包/类
/**
 * @throws java.lang.Exception
 */
@BeforeClass
public static void setUpBeforeClass() throws Exception {
  ROWS[0] = ROW;
  ROWS[1] = ROW1;
  Configuration conf = TEST_UTIL.getConfiguration();
  conf.setStrings(CoprocessorHost.REGION_COPROCESSOR_CONF_KEY,
    MultiRowMutationEndpoint.class.getName());
  conf.setBoolean("hbase.table.sanity.checks", true); // enable for below
                                                      // tests
  conf.setInt("hbase.regionserver.handler.count", 20);
  conf.setInt("hbase.bucketcache.size", 400);
  conf.setStrings(HConstants.BUCKET_CACHE_IOENGINE_KEY, "offheap");
  conf.setInt("hbase.hstore.compactionThreshold", 7);
  conf.setFloat("hfile.block.cache.size", 0.2f);
  conf.setFloat("hbase.regionserver.global.memstore.size", 0.1f);
  conf.setInt(HConstants.HBASE_CLIENT_RETRIES_NUMBER, 0);// do not retry
  conf.setInt(HConstants.HBASE_CLIENT_SCANNER_TIMEOUT_PERIOD, 500000);
  FAMILIES_1[0] = FAMILY;
  TEST_UTIL.startMiniCluster(SLAVES);
  compactReadLatch = new CountDownLatch(1);
}
 
开发者ID:apache,项目名称:hbase,代码行数:25,代码来源:TestAvoidCellReferencesIntoShippedBlocks.java

示例2: setUpBeforeClass

import org.apache.hadoop.hbase.coprocessor.MultiRowMutationEndpoint; //导入依赖的package包/类
@BeforeClass
public static void setUpBeforeClass() throws Exception {
  // Uncomment the following lines if more verbosity is needed for
  // debugging (see HBASE-12285 for details).
  //((Log4JLogger)RpcServer.LOG).getLogger().setLevel(Level.ALL);
  //((Log4JLogger)RpcClient.LOG).getLogger().setLevel(Level.ALL);
  //((Log4JLogger)ScannerCallable.LOG).getLogger().setLevel(Level.ALL);
  // make sure that we do not get the same ts twice, see HBASE-19731 for more details.
  EnvironmentEdgeManager.injectEdge(new NonRepeatedEnvironmentEdge());
  Configuration conf = TEST_UTIL.getConfiguration();
  conf.setStrings(CoprocessorHost.REGION_COPROCESSOR_CONF_KEY,
      MultiRowMutationEndpoint.class.getName());
  conf.setBoolean("hbase.table.sanity.checks", true); // enable for below tests
  conf.setLong(HConstants.HBASE_CLIENT_SCANNER_TIMEOUT_PERIOD, 6000000);
  // We need more than one region server in this test
  TEST_UTIL.startMiniCluster(SLAVES);
}
 
开发者ID:apache,项目名称:hbase,代码行数:18,代码来源:TestFromClientSide.java

示例3: setUpBeforeClass

import org.apache.hadoop.hbase.coprocessor.MultiRowMutationEndpoint; //导入依赖的package包/类
/**
 * @throws java.lang.Exception
 */
@BeforeClass
public static void setUpBeforeClass() throws Exception {
  ROWS[0] = ROW;
  ROWS[1] = ROW1;
  Configuration conf = TEST_UTIL.getConfiguration();
  conf.setStrings(CoprocessorHost.REGION_COPROCESSOR_CONF_KEY,
      MultiRowMutationEndpoint.class.getName());
  conf.setBoolean("hbase.table.sanity.checks", true); // enable for below
                                                      // tests
  conf.setInt("hbase.regionserver.handler.count", 20);
  conf.setInt("hbase.bucketcache.size", 400);
  conf.setStrings(HConstants.BUCKET_CACHE_IOENGINE_KEY, "offheap");
  conf.setFloat("hfile.block.cache.size", 0.2f);
  conf.setFloat("hbase.regionserver.global.memstore.size", 0.1f);
  conf.setInt(HConstants.HBASE_CLIENT_RETRIES_NUMBER, 0);// do not retry
  conf.setInt(HConstants.HBASE_CLIENT_SCANNER_TIMEOUT_PERIOD, 5000);
  FAMILIES_1[0] = FAMILY;
  TEST_UTIL.startMiniCluster(SLAVES);
}
 
开发者ID:apache,项目名称:hbase,代码行数:23,代码来源:TestBlockEvictionFromClient.java

示例4: before

import org.apache.hadoop.hbase.coprocessor.MultiRowMutationEndpoint; //导入依赖的package包/类
@Before
public void before() throws Exception {
  Configuration conf = TEST_UTIL.getConfiguration();
  conf.setStrings(CoprocessorHost.REGION_COPROCESSOR_CONF_KEY,
      MultiRowMutationEndpoint.class.getName(), NoOpScanPolicyObserver.class.getName());
  conf.setBoolean("hbase.table.sanity.checks", true); // enable for below tests
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:8,代码来源:TestIncrementFromClientSideWithCoprocessor.java

示例5: setUpBeforeClass

import org.apache.hadoop.hbase.coprocessor.MultiRowMutationEndpoint; //导入依赖的package包/类
/**
 * @throws java.lang.Exception
 */
@BeforeClass
public static void setUpBeforeClass() throws Exception {
  // Uncomment the following lines if more verbosity is needed for
  // debugging (see HBASE-12285 for details).
  //((Log4JLogger)RpcServer.LOG).getLogger().setLevel(Level.ALL);
  //((Log4JLogger)RpcClient.LOG).getLogger().setLevel(Level.ALL);
  //((Log4JLogger)ScannerCallable.LOG).getLogger().setLevel(Level.ALL);
  Configuration conf = TEST_UTIL.getConfiguration();
  conf.setStrings(CoprocessorHost.REGION_COPROCESSOR_CONF_KEY,
      MultiRowMutationEndpoint.class.getName());
  conf.setBoolean("hbase.table.sanity.checks", true); // enable for below tests
  // We need more than one region server in this test
  TEST_UTIL.startMiniCluster(SLAVES);
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:18,代码来源:TestFromClientSide.java

示例6: setUpBeforeClass

import org.apache.hadoop.hbase.coprocessor.MultiRowMutationEndpoint; //导入依赖的package包/类
@BeforeClass
public static void setUpBeforeClass() throws Exception {
  Configuration conf = TEST_UTIL.getConfiguration();
  conf.setStrings(CoprocessorHost.REGION_COPROCESSOR_CONF_KEY,
      MultiRowMutationEndpoint.class.getName(), NoOpScanPolicyObserver.class.getName());
  conf.setBoolean("hbase.table.sanity.checks", true); // enable for below tests
  // We need more than one region server in this test
  TEST_UTIL.startMiniCluster(SLAVES);
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:10,代码来源:TestFromClientSideWithCoprocessor.java

示例7: beforeClass

import org.apache.hadoop.hbase.coprocessor.MultiRowMutationEndpoint; //导入依赖的package包/类
@BeforeClass
public static void beforeClass() throws Exception {
  Configuration conf = TEST_UTIL.getConfiguration();
  conf.setStrings(CoprocessorHost.REGION_COPROCESSOR_CONF_KEY,
      MultiRowMutationEndpoint.class.getName());
  conf.setBoolean("hbase.table.sanity.checks", true); // enable for below tests
  // We need more than one region server in this test
  TEST_UTIL.startMiniCluster(SLAVES);
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:10,代码来源:TestIncrementsFromClientSide.java

示例8: setUpBeforeClass

import org.apache.hadoop.hbase.coprocessor.MultiRowMutationEndpoint; //导入依赖的package包/类
/**
 * @throws java.lang.Exception
 */
@BeforeClass
public static void setUpBeforeClass() throws Exception {
  Configuration conf = TEST_UTIL.getConfiguration();
  conf.setStrings(CoprocessorHost.REGION_COPROCESSOR_CONF_KEY,
      MultiRowMutationEndpoint.class.getName());
  // We need more than one region server in this test
  TEST_UTIL.startMiniCluster(SLAVES);
}
 
开发者ID:fengchen8086,项目名称:LCIndex-HBase-0.94.16,代码行数:12,代码来源:TestFromClientSide.java

示例9: setUpBeforeClass

import org.apache.hadoop.hbase.coprocessor.MultiRowMutationEndpoint; //导入依赖的package包/类
@BeforeClass
public static void setUpBeforeClass() throws Exception {
  Configuration conf = TEST_UTIL.getConfiguration();
  conf.setStrings(CoprocessorHost.REGION_COPROCESSOR_CONF_KEY,
      MultiRowMutationEndpoint.class.getName(), NoOpScanPolicyObserver.class.getName());
  // We need more than one region server in this test
  TEST_UTIL.startMiniCluster(SLAVES);
}
 
开发者ID:fengchen8086,项目名称:LCIndex-HBase-0.94.16,代码行数:9,代码来源:TestFromClientSideWithCoprocessor.java

示例10: setUpBeforeClass

import org.apache.hadoop.hbase.coprocessor.MultiRowMutationEndpoint; //导入依赖的package包/类
/**
 * @throws java.lang.Exception
 */
@BeforeClass
public static void setUpBeforeClass() throws Exception {
  ((Log4JLogger)RpcServer.LOG).getLogger().setLevel(Level.ALL);
  ((Log4JLogger)RpcClient.LOG).getLogger().setLevel(Level.ALL);
  ((Log4JLogger)ScannerCallable.LOG).getLogger().setLevel(Level.ALL);
  Configuration conf = TEST_UTIL.getConfiguration();
  conf.setStrings(CoprocessorHost.REGION_COPROCESSOR_CONF_KEY,
      MultiRowMutationEndpoint.class.getName());
  // We need more than one region server in this test
  TEST_UTIL.startMiniCluster(SLAVES);
}
 
开发者ID:tenggyut,项目名称:HIndex,代码行数:15,代码来源:TestFromClientSide.java

示例11: setUpBeforeClass

import org.apache.hadoop.hbase.coprocessor.MultiRowMutationEndpoint; //导入依赖的package包/类
@BeforeClass
public static void setUpBeforeClass() throws Exception {
  Configuration conf = TEST_UTIL.getConfiguration();
  conf.setStrings(CoprocessorHost.REGION_COPROCESSOR_CONF_KEY,
    MultiRowMutationEndpoint.class.getName(), NoOpScanPolicyObserver.class.getName());
  TestFromClientSideScanExcpetion.setUpBeforeClass();
}
 
开发者ID:apache,项目名称:hbase,代码行数:8,代码来源:TestFromClientSideScanExcpetionWithCoprocessor.java

示例12: setUpBeforeClass

import org.apache.hadoop.hbase.coprocessor.MultiRowMutationEndpoint; //导入依赖的package包/类
/**
 * @throws java.lang.Exception
 */
@BeforeClass
public static void setUpBeforeClass() throws Exception {
  ((Log4JLogger)RpcServer.LOG).getLogger().setLevel(Level.ALL);
  ((Log4JLogger)RpcClient.LOG).getLogger().setLevel(Level.ALL);
  ((Log4JLogger)ScannerCallable.LOG).getLogger().setLevel(Level.ALL);
  Configuration conf = TEST_UTIL.getConfiguration();
  conf.setStrings(CoprocessorHost.REGION_COPROCESSOR_CONF_KEY,
      MultiRowMutationEndpoint.class.getName());
  conf.setBoolean("hbase.table.sanity.checks", true); // enable for below tests
  // We need more than one region server in this test
  TEST_UTIL.startMiniCluster(SLAVES);
}
 
开发者ID:shenli-uiuc,项目名称:PyroDB,代码行数:16,代码来源:TestFromClientSide.java


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