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


Java HConnectionImplementation类代码示例

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


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

示例1: abortingHConnectionRemovesItselfFromHCM

import org.apache.hadoop.hbase.client.ConnectionManager.HConnectionImplementation; //导入依赖的package包/类
@Test (timeout=120000)
public void abortingHConnectionRemovesItselfFromHCM() throws Exception {
  // Save off current HConnections
  Map<HConnectionKey, HConnectionImplementation> oldHBaseInstances =
      new HashMap<HConnectionKey, HConnectionImplementation>();
  oldHBaseInstances.putAll(ConnectionManager.CONNECTION_INSTANCES);

  ConnectionManager.CONNECTION_INSTANCES.clear();

  try {
    HConnection connection = HConnectionManager.getConnection(TEST_UTIL.getConfiguration());
    connection.abort("test abortingHConnectionRemovesItselfFromHCM", new Exception(
        "test abortingHConnectionRemovesItselfFromHCM"));
    Assert.assertNotSame(connection,
      HConnectionManager.getConnection(TEST_UTIL.getConfiguration()));
  } finally {
    // Put original HConnections back
    ConnectionManager.CONNECTION_INSTANCES.clear();
    ConnectionManager.CONNECTION_INSTANCES.putAll(oldHBaseInstances);
  }
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:22,代码来源:TestHCM.java

示例2: testMetaLookupThreadPoolCreated

import org.apache.hadoop.hbase.client.ConnectionManager.HConnectionImplementation; //导入依赖的package包/类
@Test
public void testMetaLookupThreadPoolCreated() throws Exception {
  byte[] TABLE = Bytes.toBytes("testMetaLookupThreadPoolCreated");
  byte[][] FAMILIES = new byte[][] { Bytes.toBytes("foo") };
  if (TEST_UTIL.getHBaseAdmin().tableExists(TABLE)) {
    TEST_UTIL.getHBaseAdmin().disableTable(TABLE);
    TEST_UTIL.getHBaseAdmin().deleteTable(TABLE);
  }
  try (Table htable =
      TEST_UTIL.createTable(TABLE, FAMILIES, TEST_UTIL.getConfiguration());) {
    byte[] row = "test".getBytes();
    HConnectionImplementation c = ((HConnectionImplementation)((HTable)htable).connection);
    // check that metalookup pool would get created
    c.relocateRegion(TABLE, row);
    ExecutorService ex = c.getCurrentMetaLookupPool();
    assert(ex != null);
  }
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:19,代码来源:TestMetaWithReplicas.java

示例3: getMockedConnection

import org.apache.hadoop.hbase.client.ConnectionManager.HConnectionImplementation; //导入依赖的package包/类
/**
 * Get a Mocked {@link HConnection} that goes with the passed <code>conf</code>
 * configuration instance.  Minimally the mock will return
 * <code>conf</conf> when {@link ClusterConnection#getConfiguration()} is invoked.
 * Be sure to shutdown the connection when done by calling
 * {@link HConnectionManager#deleteConnection(Configuration)} else it
 * will stick around; this is probably not what you want.
 * @param conf configuration
 * @return HConnection object for <code>conf</code>
 * @throws ZooKeeperConnectionException
 */
public static ClusterConnection getMockedConnection(final Configuration conf)
throws ZooKeeperConnectionException {
  HConnectionKey connectionKey = new HConnectionKey(conf);
  synchronized (ConnectionManager.CONNECTION_INSTANCES) {
    HConnectionImplementation connection =
        ConnectionManager.CONNECTION_INSTANCES.get(connectionKey);
    if (connection == null) {
      connection = Mockito.mock(HConnectionImplementation.class);
      Mockito.when(connection.getConfiguration()).thenReturn(conf);
      Mockito.when(connection.getRpcControllerFactory()).thenReturn(
      Mockito.mock(RpcControllerFactory.class));
      // we need a real retrying caller
      RpcRetryingCallerFactory callerFactory = new RpcRetryingCallerFactory(conf);
      Mockito.when(connection.getRpcRetryingCallerFactory()).thenReturn(callerFactory);
      ConnectionManager.CONNECTION_INSTANCES.put(connectionKey, connection);
    }
    return connection;
  }
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:31,代码来源:HConnectionTestingUtility.java

示例4: abortingHConnectionRemovesItselfFromHCM

import org.apache.hadoop.hbase.client.ConnectionManager.HConnectionImplementation; //导入依赖的package包/类
@Test
public void abortingHConnectionRemovesItselfFromHCM() throws Exception {
  // Save off current HConnections
  Map<HConnectionKey, HConnectionImplementation> oldHBaseInstances =
      new HashMap<HConnectionKey, HConnectionImplementation>();
  oldHBaseInstances.putAll(ConnectionManager.CONNECTION_INSTANCES);

  ConnectionManager.CONNECTION_INSTANCES.clear();

  try {
    HConnection connection = HConnectionManager.getConnection(TEST_UTIL.getConfiguration());
    connection.abort("test abortingHConnectionRemovesItselfFromHCM", new Exception(
        "test abortingHConnectionRemovesItselfFromHCM"));
    Assert.assertNotSame(connection,
      HConnectionManager.getConnection(TEST_UTIL.getConfiguration()));
  } finally {
    // Put original HConnections back
    ConnectionManager.CONNECTION_INSTANCES.clear();
    ConnectionManager.CONNECTION_INSTANCES.putAll(oldHBaseInstances);
  }
}
 
开发者ID:grokcoder,项目名称:pbase,代码行数:22,代码来源:TestHCM.java

示例5: setNumTries

import org.apache.hadoop.hbase.client.ConnectionManager.HConnectionImplementation; //导入依赖的package包/类
private int setNumTries(HConnectionImplementation hci, int newVal) throws Exception {
  Field numTries = hci.getClass().getDeclaredField("numTries");
  numTries.setAccessible(true);
  Field modifiersField = Field.class.getDeclaredField("modifiers");
  modifiersField.setAccessible(true);
  modifiersField.setInt(numTries, numTries.getModifiers() & ~Modifier.FINAL);
  final int prevNumRetriesVal = (Integer)numTries.get(hci);
  numTries.set(hci, newVal);

  return prevNumRetriesVal;
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:12,代码来源:TestHCM.java

示例6: mockRegionLocator

import org.apache.hadoop.hbase.client.ConnectionManager.HConnectionImplementation; //导入依赖的package包/类
/**
 * @param connection
 */
private static void mockRegionLocator(final HConnectionImplementation connection) {
  try {
    Mockito.when(connection.getRegionLocator(Mockito.any(TableName.class))).thenAnswer(
        new Answer<RegionLocator>() {
          @Override
          public RegionLocator answer(InvocationOnMock invocation) throws Throwable {
            TableName tableName = (TableName) invocation.getArguments()[0];
            return new HRegionLocator(tableName, connection);
          }
        });
  } catch (IOException e) {
  }
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:17,代码来源:HConnectionTestingUtility.java

示例7: getSpiedConnection

import org.apache.hadoop.hbase.client.ConnectionManager.HConnectionImplementation; //导入依赖的package包/类
/**
 * Get a Mockito spied-upon {@link ClusterConnection} that goes with the passed
 * <code>conf</code> configuration instance.
 * Be sure to shutdown the connection when done by calling
 * {@link HConnectionManager#deleteConnection(Configuration)} else it
 * will stick around; this is probably not what you want.
 * @param conf configuration
 * @return HConnection object for <code>conf</code>
 * @throws ZooKeeperConnectionException
 * @see @link
 * {http://mockito.googlecode.com/svn/branches/1.6/javadoc/org/mockito/Mockito.html#spy(T)}
 */
public static ClusterConnection getSpiedConnection(final Configuration conf)
throws IOException {
  HConnectionKey connectionKey = new HConnectionKey(conf);
  synchronized (ConnectionManager.CONNECTION_INSTANCES) {
    HConnectionImplementation connection =
        ConnectionManager.CONNECTION_INSTANCES.get(connectionKey);
    if (connection == null) {
      connection = Mockito.spy(new HConnectionImplementation(conf, true));
      ConnectionManager.CONNECTION_INSTANCES.put(connectionKey, connection);
    }
    return connection;
  }
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:26,代码来源:HConnectionTestingUtility.java

示例8: getSpiedClusterConnection

import org.apache.hadoop.hbase.client.ConnectionManager.HConnectionImplementation; //导入依赖的package包/类
public static ClusterConnection getSpiedClusterConnection(final Configuration conf)
throws IOException {
  HConnectionKey connectionKey = new HConnectionKey(conf);
  synchronized (ConnectionManager.CONNECTION_INSTANCES) {
    HConnectionImplementation connection =
        ConnectionManager.CONNECTION_INSTANCES.get(connectionKey);
    if (connection == null) {
      connection = Mockito.spy(new HConnectionImplementation(conf, true));
      ConnectionManager.CONNECTION_INSTANCES.put(connectionKey, connection);
    }
    return connection;
  }
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:14,代码来源:HConnectionTestingUtility.java

示例9: getMockedConnection

import org.apache.hadoop.hbase.client.ConnectionManager.HConnectionImplementation; //导入依赖的package包/类
/**
 * Get a Mocked {@link HConnection} that goes with the passed <code>conf</code>
 * configuration instance.  Minimally the mock will return
 * <code>conf</conf> when {@link ClusterConnection#getConfiguration()} is invoked.
 * Be sure to shutdown the connection when done by calling
 * {@link HConnectionManager#deleteConnection(Configuration)} else it
 * will stick around; this is probably not what you want.
 * @param conf configuration
 * @return HConnection object for <code>conf</code>
 * @throws ZooKeeperConnectionException
 */
public static ClusterConnection getMockedConnection(final Configuration conf)
throws ZooKeeperConnectionException {
  HConnectionKey connectionKey = new HConnectionKey(conf);
  synchronized (ConnectionManager.CONNECTION_INSTANCES) {
    HConnectionImplementation connection =
        ConnectionManager.CONNECTION_INSTANCES.get(connectionKey);
    if (connection == null) {
      connection = Mockito.mock(HConnectionImplementation.class);
      Mockito.when(connection.getConfiguration()).thenReturn(conf);
      ConnectionManager.CONNECTION_INSTANCES.put(connectionKey, connection);
    }
    return connection;
  }
}
 
开发者ID:grokcoder,项目名称:pbase,代码行数:26,代码来源:HConnectionTestingUtility.java

示例10: getMockedConnection

import org.apache.hadoop.hbase.client.ConnectionManager.HConnectionImplementation; //导入依赖的package包/类
/**
 * Get a Mocked {@link HConnection} that goes with the passed <code>conf</code>
 * configuration instance.  Minimally the mock will return
 * <code>conf</conf> when {@link HConnection#getConfiguration()} is invoked.
 * Be sure to shutdown the connection when done by calling
 * {@link HConnectionManager#deleteConnection(Configuration)} else it
 * will stick around; this is probably not what you want.
 * @param conf configuration
 * @return HConnection object for <code>conf</code>
 * @throws ZooKeeperConnectionException
 */
public static ClusterConnection getMockedConnection(final Configuration conf)
throws ZooKeeperConnectionException {
  HConnectionKey connectionKey = new HConnectionKey(conf);
  synchronized (ConnectionManager.CONNECTION_INSTANCES) {
    HConnectionImplementation connection =
        ConnectionManager.CONNECTION_INSTANCES.get(connectionKey);
    if (connection == null) {
      connection = Mockito.mock(HConnectionImplementation.class);
      Mockito.when(connection.getConfiguration()).thenReturn(conf);
      ConnectionManager.CONNECTION_INSTANCES.put(connectionKey, connection);
    }
    return connection;
  }
}
 
开发者ID:shenli-uiuc,项目名称:PyroDB,代码行数:26,代码来源:HConnectionTestingUtility.java

示例11: getMockedConnectionAndDecorate

import org.apache.hadoop.hbase.client.ConnectionManager.HConnectionImplementation; //导入依赖的package包/类
/**
 * Calls {@link #getMockedConnection(Configuration)} and then mocks a few
 * more of the popular {@link HConnection} methods so they do 'normal'
 * operation (see return doc below for list). Be sure to shutdown the
 * connection when done by calling
 * {@link HConnectionManager#deleteConnection(Configuration)} else it
 * will stick around; this is probably not what you want.
 *
 * @param conf Configuration to use
 * @param admin An AdminProtocol; can be null but is usually
 * itself a mock.
 * @param client A ClientProtocol; can be null but is usually
 * itself a mock.
 * @param sn ServerName to include in the region location returned by this
 * <code>connection</code>
 * @param hri HRegionInfo to include in the location returned when
 * getRegionLocation is called on the mocked connection
 * @return Mock up a connection that returns a {@link Configuration} when
 * {@link HConnection#getConfiguration()} is called, a 'location' when
 * {@link HConnection#getRegionLocation(org.apache.hadoop.hbase.TableName, byte[], boolean)} is called,
 * and that returns the passed {@link AdminProtos.AdminService.BlockingInterface} instance when
 * {@link HConnection#getAdmin(ServerName)} is called, returns the passed
 * {@link ClientProtos.ClientService.BlockingInterface} instance when
 * {@link HConnection#getClient(ServerName)} is called (Be sure to call
 * {@link HConnectionManager#deleteConnection(Configuration)}
 * when done with this mocked Connection.
 * @throws IOException
 */
public static ClusterConnection getMockedConnectionAndDecorate(final Configuration conf,
    final AdminProtos.AdminService.BlockingInterface admin,
    final ClientProtos.ClientService.BlockingInterface client,
    final ServerName sn, final HRegionInfo hri)
throws IOException {
  HConnectionImplementation c = Mockito.mock(HConnectionImplementation.class);
  Mockito.when(c.getConfiguration()).thenReturn(conf);
  ConnectionManager.CONNECTION_INSTANCES.put(new HConnectionKey(conf), c);
  Mockito.doNothing().when(c).close();
  // Make it so we return a particular location when asked.
  final HRegionLocation loc = new HRegionLocation(hri, sn);
  Mockito.when(c.getRegionLocation((TableName) Mockito.any(),
      (byte[]) Mockito.any(), Mockito.anyBoolean())).
    thenReturn(loc);
  Mockito.when(c.locateRegion((TableName) Mockito.any(), (byte[]) Mockito.any())).
    thenReturn(loc);
  if (admin != null) {
    // If a call to getAdmin, return this implementation.
    Mockito.when(c.getAdmin(Mockito.any(ServerName.class))).
      thenReturn(admin);
  }
  if (client != null) {
    // If a call to getClient, return this client.
    Mockito.when(c.getClient(Mockito.any(ServerName.class))).
      thenReturn(client);
  }
  NonceGenerator ng = Mockito.mock(NonceGenerator.class);
  Mockito.when(c.getNonceGenerator()).thenReturn(ng);
  Mockito.when(c.getAsyncProcess()).thenReturn(
    new AsyncProcess(c, conf, null, RpcRetryingCallerFactory.instantiate(conf), false,
        RpcControllerFactory.instantiate(conf)));
  Mockito.doNothing().when(c).incCount();
  Mockito.doNothing().when(c).decCount();
  return c;
}
 
开发者ID:shenli-uiuc,项目名称:PyroDB,代码行数:64,代码来源:HConnectionTestingUtility.java

示例12: getSpiedConnection

import org.apache.hadoop.hbase.client.ConnectionManager.HConnectionImplementation; //导入依赖的package包/类
/**
 * Get a Mockito spied-upon {@link HConnection} that goes with the passed
 * <code>conf</code> configuration instance.
 * Be sure to shutdown the connection when done by calling
 * {@link HConnectionManager#deleteConnection(Configuration)} else it
 * will stick around; this is probably not what you want.
 * @param conf configuration
 * @return HConnection object for <code>conf</code>
 * @throws ZooKeeperConnectionException
 * @see @link
 * {http://mockito.googlecode.com/svn/branches/1.6/javadoc/org/mockito/Mockito.html#spy(T)}
 */
public static HConnection getSpiedConnection(final Configuration conf)
throws IOException {
  HConnectionKey connectionKey = new HConnectionKey(conf);
  synchronized (ConnectionManager.CONNECTION_INSTANCES) {
    HConnectionImplementation connection =
        ConnectionManager.CONNECTION_INSTANCES.get(connectionKey);
    if (connection == null) {
      connection = Mockito.spy(new HConnectionImplementation(conf, true));
      ConnectionManager.CONNECTION_INSTANCES.put(connectionKey, connection);
    }
    return connection;
  }
}
 
开发者ID:shenli-uiuc,项目名称:PyroDB,代码行数:26,代码来源:HConnectionTestingUtility.java

示例13: testClusterConnection

import org.apache.hadoop.hbase.client.ConnectionManager.HConnectionImplementation; //导入依赖的package包/类
@Test
public void testClusterConnection() throws IOException {
  ThreadPoolExecutor otherPool = new ThreadPoolExecutor(1, 1,
      5, TimeUnit.SECONDS,
      new SynchronousQueue<Runnable>(),
      Threads.newDaemonThreadFactory("test-hcm"));

  HConnection con1 = HConnectionManager.createConnection(TEST_UTIL.getConfiguration());
  HConnection con2 = HConnectionManager.createConnection(TEST_UTIL.getConfiguration(), otherPool);
  // make sure the internally created ExecutorService is the one passed
  assertTrue(otherPool == ((HConnectionImplementation)con2).getCurrentBatchPool());

  String tableName = "testClusterConnection";
  TEST_UTIL.createTable(tableName.getBytes(), FAM_NAM).close();
  HTable t = (HTable)con1.getTable(tableName, otherPool);
  // make sure passing a pool to the getTable does not trigger creation of an internal pool
  assertNull("Internal Thread pool should be null", ((HConnectionImplementation)con1).getCurrentBatchPool());
  // table should use the pool passed
  assertTrue(otherPool == t.getPool());
  t.close();

  t = (HTable)con2.getTable(tableName);
  // table should use the connectin's internal pool
  assertTrue(otherPool == t.getPool());
  t.close();

  t = (HTable)con2.getTable(Bytes.toBytes(tableName));
  // try other API too
  assertTrue(otherPool == t.getPool());
  t.close();

  t = (HTable)con2.getTable(TableName.valueOf(tableName));
  // try other API too
  assertTrue(otherPool == t.getPool());
  t.close();

  t = (HTable)con1.getTable(tableName);
  ExecutorService pool = ((HConnectionImplementation)con1).getCurrentBatchPool();
  // make sure an internal pool was created
  assertNotNull("An internal Thread pool should have been created", pool);
  // and that the table is using it
  assertTrue(t.getPool() == pool);
  t.close();

  t = (HTable)con1.getTable(tableName);
  // still using the *same* internal pool
  assertTrue(t.getPool() == pool);
  t.close();

  con1.close();
  // if the pool was created on demand it should be closed upon connection close
  assertTrue(pool.isShutdown());

  con2.close();
  // if the pool is passed, it is not closed
  assertFalse(otherPool.isShutdown());
  otherPool.shutdownNow();
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:59,代码来源:TestHCM.java

示例14: testClusterStatus

import org.apache.hadoop.hbase.client.ConnectionManager.HConnectionImplementation; //导入依赖的package包/类
@Ignore @Test (expected = RegionServerStoppedException.class)
public void testClusterStatus() throws Exception {

  TableName tn =
      TableName.valueOf("testClusterStatus");
  byte[] cf = "cf".getBytes();
  byte[] rk = "rk1".getBytes();

  JVMClusterUtil.RegionServerThread rs = TEST_UTIL.getHBaseCluster().startRegionServer();
  rs.waitForServerOnline();
  final ServerName sn = rs.getRegionServer().getServerName();

  HTable t = TEST_UTIL.createTable(tn, cf);
  TEST_UTIL.waitTableAvailable(tn);

  while(TEST_UTIL.getHBaseCluster().getMaster().getAssignmentManager().
      getRegionStates().isRegionsInTransition()){
    Thread.sleep(1);
  }
  final HConnectionImplementation hci =  (HConnectionImplementation)t.getConnection();
  while (t.getRegionLocation(rk).getPort() != sn.getPort()){
    TEST_UTIL.getHBaseAdmin().move(t.getRegionLocation(rk).getRegionInfo().
        getEncodedNameAsBytes(), Bytes.toBytes(sn.toString()));
    while(TEST_UTIL.getHBaseCluster().getMaster().getAssignmentManager().
        getRegionStates().isRegionsInTransition()){
      Thread.sleep(1);
    }
    hci.clearRegionCache(tn);
  }
  Assert.assertNotNull(hci.clusterStatusListener);
  TEST_UTIL.assertRegionOnServer(t.getRegionLocation(rk).getRegionInfo(), sn, 20000);

  Put p1 = new Put(rk);
  p1.add(cf, "qual".getBytes(), "val".getBytes());
  t.put(p1);

  rs.getRegionServer().abort("I'm dead");

  // We want the status to be updated. That's a least 10 second
  TEST_UTIL.waitFor(40000, 1000, true, new Waiter.Predicate<Exception>() {
    @Override
    public boolean evaluate() throws Exception {
      return TEST_UTIL.getHBaseCluster().getMaster().getServerManager().
          getDeadServers().isDeadServer(sn);
    }
  });

  TEST_UTIL.waitFor(40000, 1000, true, new Waiter.Predicate<Exception>() {
    @Override
    public boolean evaluate() throws Exception {
      return hci.clusterStatusListener.isDeadServer(sn);
    }
  });

  t.close();
  hci.getClient(sn);  // will throw an exception: RegionServerStoppedException
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:58,代码来源:TestHCM.java

示例15: testConnectionCut

import org.apache.hadoop.hbase.client.ConnectionManager.HConnectionImplementation; //导入依赖的package包/类
/**
   * Test that the connection to the dead server is cut immediately when we receive the
   *  notification.
   * @throws Exception
   */
@Test
public void testConnectionCut() throws Exception {

  TableName tableName = TableName.valueOf("HCM-testConnectionCut");

  TEST_UTIL.createTable(tableName, FAM_NAM).close();
  boolean previousBalance = TEST_UTIL.getHBaseAdmin().setBalancerRunning(false, true);

  Configuration c2 = new Configuration(TEST_UTIL.getConfiguration());
  // We want to work on a separate connection.
  c2.set(HConstants.HBASE_CLIENT_INSTANCE_ID, String.valueOf(-1));
  c2.setInt(HConstants.HBASE_CLIENT_RETRIES_NUMBER, 1);
  c2.setInt(HConstants.HBASE_RPC_TIMEOUT_KEY, 30 * 1000);

  HTable table = new HTable(c2, tableName);

  Put p = new Put(FAM_NAM);
  p.add(FAM_NAM, FAM_NAM, FAM_NAM);
  table.put(p);

  final HConnectionImplementation hci =  (HConnectionImplementation)table.getConnection();
  final HRegionLocation loc = table.getRegionLocation(FAM_NAM);

  Get get = new Get(FAM_NAM);
  Assert.assertNotNull(table.get(get));

  get = new Get(FAM_NAM);
  get.setFilter(new BlockingFilter());

  // This thread will mark the server as dead while we're waiting during a get.
  Thread t = new Thread() {
    @Override
    public void run() {
      synchronized (syncBlockingFilter) {
        try {
          syncBlockingFilter.wait();
        } catch (InterruptedException e) {
          throw new RuntimeException(e);
        }
      }
      hci.clusterStatusListener.deadServerHandler.newDead(loc.getServerName());
    }
  };

  t.start();
  try {
    table.get(get);
    Assert.fail();
  } catch (IOException expected) {
    LOG.debug("Received: " + expected);
    Assert.assertFalse(expected instanceof SocketTimeoutException);
    Assert.assertFalse(syncBlockingFilter.get());
  } finally {
    syncBlockingFilter.set(true);
    t.join();
    HConnectionManager.getConnection(c2).close();
    TEST_UTIL.getHBaseAdmin().setBalancerRunning(previousBalance, true);
  }

  table.close();
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:67,代码来源:TestHCM.java


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