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


Java JVMClusterUtil类代码示例

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


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

示例1: addRegionServer

import org.apache.hadoop.hbase.util.JVMClusterUtil; //导入依赖的package包/类
@SuppressWarnings("unchecked")
public JVMClusterUtil.RegionServerThread addRegionServer(
    Configuration config, final int index)
throws IOException {
  // Create each regionserver with its own Configuration instance so each has
  // its HConnection instance rather than share (see HBASE_INSTANCES down in
  // the guts of HConnectionManager.

  // Also, create separate CoordinatedStateManager instance per Server.
  // This is special case when we have to have more than 1 CoordinatedStateManager
  // within 1 process.
  CoordinatedStateManager cp = CoordinatedStateManagerFactory.getCoordinatedStateManager(conf);

  JVMClusterUtil.RegionServerThread rst =
      JVMClusterUtil.createRegionServerThread(config, cp, (Class<? extends HRegionServer>) conf
          .getClass(HConstants.REGION_SERVER_IMPL, this.regionServerClass), index);

  this.regionThreads.add(rst);
  return rst;
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:21,代码来源:LocalHBaseCluster.java

示例2: addMaster

import org.apache.hadoop.hbase.util.JVMClusterUtil; //导入依赖的package包/类
public JVMClusterUtil.MasterThread addMaster(Configuration c, final int index)
throws IOException {
  // Create each master with its own Configuration instance so each has
  // its HConnection instance rather than share (see HBASE_INSTANCES down in
  // the guts of HConnectionManager.

  // Also, create separate CoordinatedStateManager instance per Server.
  // This is special case when we have to have more than 1 CoordinatedStateManager
  // within 1 process.
  CoordinatedStateManager cp = CoordinatedStateManagerFactory.getCoordinatedStateManager(conf);

  JVMClusterUtil.MasterThread mt = JVMClusterUtil.createMasterThread(c, cp,
      (Class<? extends HMaster>) conf.getClass(HConstants.MASTER_IMPL, this.masterClass), index);
  this.masterThreads.add(mt);
  return mt;
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:17,代码来源:LocalHBaseCluster.java

示例3: waitOnRegionServer

import org.apache.hadoop.hbase.util.JVMClusterUtil; //导入依赖的package包/类
/**
 * Wait for the specified region server to stop
 * Removes this thread from list of running threads.
 * @param rst
 * @return Name of region server that just went down.
 */
public String waitOnRegionServer(JVMClusterUtil.RegionServerThread rst) {
  while (rst.isAlive()) {
    try {
      LOG.info("Waiting on " +
        rst.getRegionServer().toString());
      rst.join();
    } catch (InterruptedException e) {
      e.printStackTrace();
    }
  }
  for (int i=0;i<regionThreads.size();i++) {
    if (regionThreads.get(i) == rst) {
      regionThreads.remove(i);
      break;
    }
  }
  return rst.getName();
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:25,代码来源:LocalHBaseCluster.java

示例4: waitOnMaster

import org.apache.hadoop.hbase.util.JVMClusterUtil; //导入依赖的package包/类
/**
 * Wait for the specified master to stop
 * Removes this thread from list of running threads.
 * @param masterThread
 * @return Name of master that just went down.
 */
public String waitOnMaster(JVMClusterUtil.MasterThread masterThread) {
  while (masterThread.isAlive()) {
    try {
      LOG.info("Waiting on " +
        masterThread.getMaster().getServerName().toString());
      masterThread.join();
    } catch (InterruptedException e) {
      e.printStackTrace();
    }
  }
  for (int i=0;i<masterThreads.size();i++) {
    if (masterThreads.get(i) == masterThread) {
      masterThreads.remove(i);
      break;
    }
  }
  return masterThread.getName();
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:25,代码来源:LocalHBaseCluster.java

示例5: startRegionServer

import org.apache.hadoop.hbase.util.JVMClusterUtil; //导入依赖的package包/类
/**
 * Starts a region server thread running
 *
 * @throws IOException
 * @return New RegionServerThread
 */
public JVMClusterUtil.RegionServerThread startRegionServer()
    throws IOException {
  final Configuration newConf = HBaseConfiguration.create(conf);
  User rsUser =
      HBaseTestingUtility.getDifferentUser(newConf, ".hfs."+index++);
  JVMClusterUtil.RegionServerThread t =  null;
  try {
    t = hbaseCluster.addRegionServer(
        newConf, hbaseCluster.getRegionServers().size(), rsUser);
    t.start();
    t.waitForServerOnline();
  } catch (InterruptedException ie) {
    throw new IOException("Interrupted adding regionserver to cluster", ie);
  }
  return t;
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:23,代码来源:MiniHBaseCluster.java

示例6: waitForActiveAndReadyMaster

import org.apache.hadoop.hbase.util.JVMClusterUtil; //导入依赖的package包/类
/**
 * Blocks until there is an active master and that master has completed
 * initialization.
 *
 * @return true if an active master becomes available.  false if there are no
 *         masters left.
 * @throws InterruptedException
 */
public boolean waitForActiveAndReadyMaster(long timeout) throws IOException {
  List<JVMClusterUtil.MasterThread> mts;
  long start = System.currentTimeMillis();
  while (!(mts = getMasterThreads()).isEmpty()
      && (System.currentTimeMillis() - start) < timeout) {
    for (JVMClusterUtil.MasterThread mt : mts) {
      if (mt.getMaster().isActiveMaster() && mt.getMaster().isInitialized()) {
        return true;
      }
    }

    Threads.sleep(100);
  }
  return false;
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:24,代码来源:MiniHBaseCluster.java

示例7: ensureSomeNonStoppedRegionServersAvailable

import org.apache.hadoop.hbase.util.JVMClusterUtil; //导入依赖的package包/类
/**
 * Make sure that at least the specified number of region servers
 * are running. We don't count the ones that are currently stopping or are
 * stopped.
 * @param num minimum number of region servers that should be running
 * @return true if we started some servers
 * @throws IOException
 */
public boolean ensureSomeNonStoppedRegionServersAvailable(final int num)
  throws IOException {
  boolean startedServer = ensureSomeRegionServersAvailable(num);

  int nonStoppedServers = 0;
  for (JVMClusterUtil.RegionServerThread rst :
    getMiniHBaseCluster().getRegionServerThreads()) {

    HRegionServer hrs = rst.getRegionServer();
    if (hrs.isStopping() || hrs.isStopped()) {
      LOG.info("A region server is stopped or stopping:"+hrs);
    } else {
      nonStoppedServers++;
    }
  }
  for (int i=nonStoppedServers; i<num; ++i) {
    LOG.info("Started new server=" + getMiniHBaseCluster().startRegionServer());
    startedServer = true;
  }
  return startedServer;
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:30,代码来源:HBaseTestingUtility.java

示例8: testClusterId

import org.apache.hadoop.hbase.util.JVMClusterUtil; //导入依赖的package包/类
@Test
public void testClusterId() throws Exception  {
  TEST_UTIL.startMiniZKCluster();
  TEST_UTIL.startMiniDFSCluster(1);

  Configuration conf = new Configuration(TEST_UTIL.getConfiguration());
  CoordinatedStateManager cp = CoordinatedStateManagerFactory.getCoordinatedStateManager(conf);
  //start region server, needs to be separate
  //so we get an unset clusterId
  rst = JVMClusterUtil.createRegionServerThread(conf,cp,
      HRegionServer.class, 0);
  rst.start();
  //Make sure RS is in blocking state
  Thread.sleep(10000);

  TEST_UTIL.startMiniHBaseCluster(1, 1);

  rst.waitForServerOnline();

  String clusterId = ZKClusterId.readClusterIdZNode(TEST_UTIL.getZooKeeperWatcher());
  assertNotNull(clusterId);
  assertEquals(clusterId, rst.getRegionServer().getClusterId());
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:24,代码来源:TestClusterId.java

示例9: testClusterId

import org.apache.hadoop.hbase.util.JVMClusterUtil; //导入依赖的package包/类
@Test
public void testClusterId() throws Exception  {
  TEST_UTIL.startMiniZKCluster();
  TEST_UTIL.startMiniDFSCluster(1);

  Configuration conf = new Configuration(TEST_UTIL.getConfiguration());
  //start region server, needs to be separate
  //so we get an unset clusterId
  rst = JVMClusterUtil.createRegionServerThread(conf,
      HRegionServer.class, 0);
  rst.start();
  //Make sure RS is in blocking state
  Thread.sleep(10000);

  TEST_UTIL.startMiniHBaseCluster(1, 0);

  rst.waitForServerOnline();

  String clusterId = ZKClusterId.readClusterIdZNode(TEST_UTIL.getZooKeeperWatcher());
  assertNotNull(clusterId);
  assertEquals(clusterId, rst.getRegionServer().getClusterId());
}
 
开发者ID:tenggyut,项目名称:HIndex,代码行数:23,代码来源:TestClusterId.java

示例10: waitForActiveAndReadyMaster

import org.apache.hadoop.hbase.util.JVMClusterUtil; //导入依赖的package包/类
/**
 * Blocks until there is an active master and that master has completed
 * initialization.
 *
 * @return true if an active master becomes available.  false if there are no
 *         masters left.
 * @throws InterruptedException
 */
public boolean waitForActiveAndReadyMaster(long timeout) throws IOException {
  List<JVMClusterUtil.MasterThread> mts;
  long start = System.currentTimeMillis();
  while (!(mts = getMasterThreads()).isEmpty()
      && (System.currentTimeMillis() - start) < timeout) {
    for (JVMClusterUtil.MasterThread mt : mts) {
      ServerManager serverManager = mt.getMaster().getServerManager();
      if (mt.getMaster().isActiveMaster() && mt.getMaster().isInitialized()
          && !serverManager.areDeadServersInProgress()) {
        return true;
      }
    }

    Threads.sleep(100);
  }
  return false;
}
 
开发者ID:fengchen8086,项目名称:LCIndex-HBase-0.94.16,代码行数:26,代码来源:MiniHBaseCluster.java

示例11: verifyMethodResult

import org.apache.hadoop.hbase.util.JVMClusterUtil; //导入依赖的package包/类
private void verifyMethodResult(Class c, String methodName[], byte[] tableName,
                                Object value[]) throws IOException {
  try {
    for (JVMClusterUtil.RegionServerThread t : cluster.getRegionServerThreads()) {
      for (HRegionInfo r : t.getRegionServer().getOnlineRegions()) {
        if (!Arrays.equals(r.getTableName(), tableName)) {
          continue;
        }
        RegionCoprocessorHost cph = t.getRegionServer().getOnlineRegion(r.getRegionName()).
            getCoprocessorHost();

        Coprocessor cp = cph.findCoprocessor(c.getName());
        assertNotNull(cp);
        for (int i = 0; i < methodName.length; ++i) {
          Method m = c.getMethod(methodName[i]);
          Object o = m.invoke(cp);
          assertTrue("Result of " + c.getName() + "." + methodName[i]
              + " is expected to be " + value[i].toString()
              + ", while we get " + o.toString(), o.equals(value[i]));
        }
      }
    }
  } catch (Exception e) {
    throw new IOException(e.toString());
  }
}
 
开发者ID:fengchen8086,项目名称:LCIndex-HBase-0.94.16,代码行数:27,代码来源:TestRegionObserverInterface.java

示例12: getServerWith

import org.apache.hadoop.hbase.util.JVMClusterUtil; //导入依赖的package包/类
/**
 * Get the location of the specified region
 * @param regionName Name of the region in bytes
 * @return Index into List of {@link MiniHBaseCluster#getRegionServerThreads()}
 * of HRS carrying hbase:meta. Returns -1 if none found.
 */
public int getServerWith(byte[] regionName) {
  int index = -1;
  int count = 0;
  for (JVMClusterUtil.RegionServerThread rst: getRegionServerThreads()) {
    HRegionServer hrs = rst.getRegionServer();
    HRegion metaRegion =
      hrs.getOnlineRegion(regionName);
    if (metaRegion != null) {
      index = count;
      break;
    }
    count++;
  }
  return index;
}
 
开发者ID:grokcoder,项目名称:pbase,代码行数:22,代码来源:MiniHBaseCluster.java

示例13: getLiveRegionServers

import org.apache.hadoop.hbase.util.JVMClusterUtil; //导入依赖的package包/类
/**
 * @return List of running servers (Some servers may have been killed or
 * aborted during lifetime of cluster; these servers are not included in this
 * list).
 */
public List<JVMClusterUtil.RegionServerThread> getLiveRegionServers() {
  List<JVMClusterUtil.RegionServerThread> liveServers =
    new ArrayList<JVMClusterUtil.RegionServerThread>();
  List<RegionServerThread> list = getRegionServers();
  for (JVMClusterUtil.RegionServerThread rst: list) {
    if (rst.isAlive()) liveServers.add(rst);
    else LOG.info("Not alive " + rst.getName());
  }
  return liveServers;
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:16,代码来源:LocalHBaseCluster.java

示例14: getActiveMaster

import org.apache.hadoop.hbase.util.JVMClusterUtil; //导入依赖的package包/类
/**
 * Gets the current active master, if available.  If no active master, returns
 * null.
 * @return the HMaster for the active master
 */
public HMaster getActiveMaster() {
  for (JVMClusterUtil.MasterThread mt : masterThreads) {
    if (mt.getMaster().isActiveMaster()) {
      // Ensure that the current active master is not stopped.
      // We don't want to return a stopping master as an active master.
      if (mt.getMaster().isActiveMaster()  && !mt.getMaster().isStopped()) {
        return mt.getMaster();
      }
    }
  }
  return null;
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:18,代码来源:LocalHBaseCluster.java

示例15: getLiveMasters

import org.apache.hadoop.hbase.util.JVMClusterUtil; //导入依赖的package包/类
/**
 * @return List of running master servers (Some servers may have been killed
 * or aborted during lifetime of cluster; these servers are not included in
 * this list).
 */
public List<JVMClusterUtil.MasterThread> getLiveMasters() {
  List<JVMClusterUtil.MasterThread> liveServers =
    new ArrayList<JVMClusterUtil.MasterThread>();
  List<JVMClusterUtil.MasterThread> list = getMasters();
  for (JVMClusterUtil.MasterThread mt: list) {
    if (mt.isAlive()) {
      liveServers.add(mt);
    }
  }
  return liveServers;
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:17,代码来源:LocalHBaseCluster.java


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