Java 类org.apache.hadoop.hbase.regionserver.handler.OpenRegionHandler 实例源码

项目:HIndex    文件:TestRegionServerNoMaster.java   
/**
 * Test that if we do a close while opening it stops the opening.
 */
@Test(timeout = 60000)
public void testCancelOpeningWithoutZK() throws Exception {
  // We close
  closeNoZK();
  checkRegionIsClosed();

  // Let do the initial steps, without having a handler
  ZKAssign.createNodeOffline(HTU.getZooKeeperWatcher(), hri, getRS().getServerName());
  getRS().getRegionsInTransitionInRS().put(hri.getEncodedNameAsBytes(), Boolean.TRUE);

  // That's a close without ZK.
  AdminProtos.CloseRegionRequest crr =
      RequestConverter.buildCloseRegionRequest(getRS().getServerName(), regionName, false);
  try {
    getRS().closeRegion(null, crr);
    Assert.assertTrue(false);
  } catch (ServiceException expected) {
  }

  // The state in RIT should have changed to close
  Assert.assertEquals(Boolean.FALSE, getRS().getRegionsInTransitionInRS().get(
      hri.getEncodedNameAsBytes()));

  // Let's start the open handler
  HTableDescriptor htd = getRS().tableDescriptors.get(hri.getTable());
  getRS().service.submit(new OpenRegionHandler(getRS(), getRS(), hri, htd, 0));

  // The open handler should have removed the region from RIT but kept the region closed
  checkRegionIsClosed();

  // The open handler should have updated the value in ZK.
  Assert.assertTrue(ZKAssign.deleteNode(
      getRS().getZooKeeperWatcher(), hri.getEncodedName(),
      EventType.RS_ZK_REGION_FAILED_OPEN, 1)
  );

  reopenRegion();
}
项目:hbase    文件:TestRegionServerNoMaster.java   
/**
 * Test that if we do a close while opening it stops the opening.
 */
@Test(timeout = 60000)
public void testCancelOpeningWithoutZK() throws Exception {
  // We close
  closeRegionNoZK();
  checkRegionIsClosed(HTU, getRS(), hri);

  // Let do the initial steps, without having a handler
  getRS().getRegionsInTransitionInRS().put(hri.getEncodedNameAsBytes(), Boolean.TRUE);

  // That's a close without ZK.
  AdminProtos.CloseRegionRequest crr =
      ProtobufUtil.buildCloseRegionRequest(getRS().getServerName(), regionName);
  try {
    getRS().rpcServices.closeRegion(null, crr);
    Assert.assertTrue(false);
  } catch (org.apache.hbase.thirdparty.com.google.protobuf.ServiceException expected) {
  }

  // The state in RIT should have changed to close
  Assert.assertEquals(Boolean.FALSE, getRS().getRegionsInTransitionInRS().get(
      hri.getEncodedNameAsBytes()));

  // Let's start the open handler
  TableDescriptor htd = getRS().tableDescriptors.get(hri.getTable());

  getRS().executorService.submit(new OpenRegionHandler(getRS(), getRS(), hri, htd, -1));

  // The open handler should have removed the region from RIT but kept the region closed
  checkRegionIsClosed(HTU, getRS(), hri);

  openRegion(HTU, getRS(), hri);
}
项目:RStore    文件:HRegionServer.java   
@Override
@QosPriority(priority = HIGH_QOS)
public RegionOpeningState openRegion(HRegionInfo region, int versionOfOfflineNode)
    throws IOException {
  checkOpen();
  checkIfRegionInTransition(region, OPEN);
  HRegion onlineRegion = this.getFromOnlineRegions(region.getEncodedName());
  if (null != onlineRegion) {
    // See HBASE-5094. Cross check with META if still this RS is owning the
    // region.
    Pair<HRegionInfo, ServerName> p = MetaReader.getRegion(
        this.catalogTracker, region.getRegionName());
    if (this.getServerName().equals(p.getSecond())) {
      LOG.warn("Attempted open of " + region.getEncodedName()
          + " but already online on this server");
      return RegionOpeningState.ALREADY_OPENED;
    } else {
      LOG.warn("The region " + region.getEncodedName()
          + " is online on this server but META does not have this server.");
      this.removeFromOnlineRegions(region.getEncodedName());
    }
  }
  LOG.info("Received request to open region: " +
    region.getRegionNameAsString());
  this.regionsInTransitionInRS.putIfAbsent(region.getEncodedNameAsBytes(),
      true);
  HTableDescriptor htd = this.tableDescriptors.get(region.getTableName());
  // Need to pass the expected version in the constructor.
  if (region.isRootRegion()) {
    this.service.submit(new OpenRootHandler(this, this, region, htd,
        versionOfOfflineNode));
  } else if (region.isMetaRegion()) {
    this.service.submit(new OpenMetaHandler(this, this, region, htd,
        versionOfOfflineNode));
  } else {
    this.service.submit(new OpenRegionHandler(this, this, region, htd,
        versionOfOfflineNode));
  }
  return RegionOpeningState.OPENED;
}
项目:PyroDB    文件:TestRegionServerNoMaster.java   
/**
 * Test that if we do a close while opening it stops the opening.
 */
@Test(timeout = 60000)
public void testCancelOpeningWithoutZK() throws Exception {
  // We close
  closeNoZK();
  checkRegionIsClosed();

  // Let do the initial steps, without having a handler
  ZKAssign.createNodeOffline(HTU.getZooKeeperWatcher(), hri, getRS().getServerName());
  getRS().getRegionsInTransitionInRS().put(hri.getEncodedNameAsBytes(), Boolean.TRUE);

  // That's a close without ZK.
  AdminProtos.CloseRegionRequest crr =
      RequestConverter.buildCloseRegionRequest(getRS().getServerName(), regionName, false);
  try {
    getRS().rpcServices.closeRegion(null, crr);
    Assert.assertTrue(false);
  } catch (ServiceException expected) {
  }

  // The state in RIT should have changed to close
  Assert.assertEquals(Boolean.FALSE, getRS().getRegionsInTransitionInRS().get(
      hri.getEncodedNameAsBytes()));

  // Let's start the open handler
  HTableDescriptor htd = getRS().tableDescriptors.get(hri.getTable());
  getRS().service.submit(new OpenRegionHandler(getRS(), getRS(), hri, htd, 0));

  // The open handler should have removed the region from RIT but kept the region closed
  checkRegionIsClosed();

  // The open handler should have updated the value in ZK.
  Assert.assertTrue(ZKAssign.deleteNode(
      getRS().getZooKeeper(), hri.getEncodedName(),
      EventType.RS_ZK_REGION_FAILED_OPEN, 1)
  );

  reopenRegion();
}
项目:c5    文件:TestRegionServerNoMaster.java   
/**
 * Test that if we do a close while opening it stops the opening.
 */
@Test(timeout = 60000)
public void testCancelOpeningWithoutZK() throws Exception {
  // We close
  closeNoZK();
  checkRegionIsClosed();

  // Let do the initial steps, without having a handler
  ZKAssign.createNodeOffline(HTU.getZooKeeperWatcher(), hri, getRS().getServerName());
  getRS().getRegionsInTransitionInRS().put(hri.getEncodedNameAsBytes(), Boolean.TRUE);

  // That's a close without ZK.
  AdminProtos.CloseRegionRequest crr =
      RequestConverter.buildCloseRegionRequest(regionName, false);
  try {
    getRS().closeRegion(null, crr);
    Assert.assertTrue(false);
  } catch (ServiceException expected) {
  }

  // The state in RIT should have changed to close
  Assert.assertEquals(Boolean.FALSE, getRS().getRegionsInTransitionInRS().get(
      hri.getEncodedNameAsBytes()));

  // Let's start the open handler
  HTableDescriptor htd = getRS().tableDescriptors.get(hri.getTable());
  getRS().service.submit(new OpenRegionHandler(getRS(), getRS(), hri, htd, 0));

  // The open handler should have removed the region from RIT but kept the region closed
  checkRegionIsClosed();

  // The open handler should have updated the value in ZK.
  Assert.assertTrue(ZKAssign.deleteNode(
      getRS().getZooKeeperWatcher(), hri.getEncodedName(),
      EventType.RS_ZK_REGION_FAILED_OPEN, 1)
  );

  reopenRegion();
}
项目:DominoHBase    文件:TestRegionServerNoMaster.java   
/**
 * Test that if we do a close while opening it stops the opening.
 */
@Test(timeout = 20000)
public void testCancelOpeningWithoutZK() throws Exception {
  // We close
  closeNoZK();
  checkRegionIsClosed();

  // Let do the initial steps, without having a handler
  ZKAssign.createNodeOffline(HTU.getZooKeeperWatcher(), hri, getRS().getServerName());
  getRS().getRegionsInTransitionInRS().put(hri.getEncodedNameAsBytes(), Boolean.TRUE);

  // That's a close without ZK.
  AdminProtos.CloseRegionRequest crr =
      RequestConverter.buildCloseRegionRequest(regionName, false);
  try {
    getRS().closeRegion(null, crr);
    Assert.assertTrue(false);
  } catch (ServiceException expected) {
  }

  // The state in RIT should have changed to close
  Assert.assertEquals(Boolean.FALSE, getRS().getRegionsInTransitionInRS().get(
      hri.getEncodedNameAsBytes()));

  // Let's start the open handler
  HTableDescriptor htd = getRS().tableDescriptors.get(hri.getTableName());
  getRS().service.submit(new OpenRegionHandler(getRS(), getRS(), hri, htd, 0));

  // The open handler should have removed the region from RIT but kept the region closed
  checkRegionIsClosed();

  // The open handler should have updated the value in ZK.
  Assert.assertTrue(ZKAssign.deleteNode(
      getRS().getZooKeeperWatcher(), hri.getEncodedName(),
      EventHandler.EventType.RS_ZK_REGION_FAILED_OPEN, 1)
  );

  reopenRegion();
}
项目:ditb    文件:TestRegionServerNoMaster.java   
/**
 * Test that if we do a close while opening it stops the opening.
 */
@Test(timeout = 60000)
public void testCancelOpeningWithoutZK() throws Exception {
  // We close
  closeRegionNoZK();
  checkRegionIsClosed(HTU, getRS(), hri);

  // Let do the initial steps, without having a handler
  ZKAssign.createNodeOffline(HTU.getZooKeeperWatcher(), hri, getRS().getServerName());
  getRS().getRegionsInTransitionInRS().put(hri.getEncodedNameAsBytes(), Boolean.TRUE);

  // That's a close without ZK.
  AdminProtos.CloseRegionRequest crr =
      RequestConverter.buildCloseRegionRequest(getRS().getServerName(), regionName, false);
  try {
    getRS().rpcServices.closeRegion(null, crr);
    Assert.assertTrue(false);
  } catch (ServiceException expected) {
  }

  // The state in RIT should have changed to close
  Assert.assertEquals(Boolean.FALSE, getRS().getRegionsInTransitionInRS().get(
      hri.getEncodedNameAsBytes()));

  // Let's start the open handler
  HTableDescriptor htd = getRS().tableDescriptors.get(hri.getTable());

  BaseCoordinatedStateManager csm = new ZkCoordinatedStateManager();
  csm.initialize(getRS());
  csm.start();

  ZkOpenRegionCoordination.ZkOpenRegionDetails zkCrd =
    new ZkOpenRegionCoordination.ZkOpenRegionDetails();
  zkCrd.setServerName(getRS().getServerName());
  zkCrd.setVersionOfOfflineNode(0);

  getRS().service.submit(new OpenRegionHandler(getRS(), getRS(), hri, htd,
    -1, csm.getOpenRegionCoordination(), zkCrd));

  // The open handler should have removed the region from RIT but kept the region closed
  checkRegionIsClosed(HTU, getRS(), hri);

  // The open handler should have updated the value in ZK.
  Assert.assertTrue(ZKAssign.deleteNode(
      getRS().getZooKeeper(), hri.getEncodedName(),
      EventType.RS_ZK_REGION_FAILED_OPEN, 1)
  );

  openRegion(HTU, getRS(), hri);
}
项目:ditb    文件:TestRegionServerNoMaster.java   
/**
 * Test an open then a close with ZK. This is going to mess-up the ZK states, so
 * the opening will fail as well because it doesn't find what it expects in ZK.
 */
@Test(timeout = 60000)
public void testCancelOpeningWithZK() throws Exception {
  // We close
  closeRegionNoZK();
  checkRegionIsClosed(HTU, getRS(), hri);

  // Let do the initial steps, without having a handler
  getRS().getRegionsInTransitionInRS().put(hri.getEncodedNameAsBytes(), Boolean.TRUE);

  // That's a close without ZK.
  ZKAssign.createNodeClosing(HTU.getZooKeeperWatcher(), hri, getRS().getServerName());
  AdminProtos.CloseRegionRequest crr =
      RequestConverter.buildCloseRegionRequest(getRS().getServerName(), regionName, false);
  try {
    getRS().rpcServices.closeRegion(null, crr);
    Assert.assertTrue(false);
  } catch (ServiceException expected) {
    Assert.assertTrue(expected.getCause() instanceof RegionAlreadyInTransitionException);
  }

  // The close should have left the ZK state as it is: it's the job the AM to delete it
  Assert.assertTrue(ZKAssign.deleteNode(
      getRS().getZooKeeper(), hri.getEncodedName(),
      EventType.M_ZK_REGION_CLOSING, 0)
  );

  // The state in RIT should have changed to close
  Assert.assertEquals(Boolean.FALSE, getRS().getRegionsInTransitionInRS().get(
      hri.getEncodedNameAsBytes()));

  // Let's start the open handler
  // It should not succeed for two reasons:
  //  1) There is no ZK node
  //  2) The region in RIT was changed.
  // The order is more or less implementation dependant.
  HTableDescriptor htd = getRS().tableDescriptors.get(hri.getTable());

  BaseCoordinatedStateManager csm = new ZkCoordinatedStateManager();
  csm.initialize(getRS());
  csm.start();

  ZkOpenRegionCoordination.ZkOpenRegionDetails zkCrd =
    new ZkOpenRegionCoordination.ZkOpenRegionDetails();
  zkCrd.setServerName(getRS().getServerName());
  zkCrd.setVersionOfOfflineNode(0);

  getRS().service.submit(new OpenRegionHandler(getRS(), getRS(), hri, htd,
    -1, csm.getOpenRegionCoordination(), zkCrd));

  // The open handler should have removed the region from RIT but kept the region closed
  checkRegionIsClosed(HTU, getRS(), hri);

  // We should not find any znode here.
  Assert.assertEquals(-1, ZKAssign.getVersion(HTU.getZooKeeperWatcher(), hri));

  openRegion(HTU, getRS(), hri);
}
项目:LCIndex-HBase-0.94.16    文件:HRegionServer.java   
private RegionOpeningState openRegion(HRegionInfo region, int versionOfOfflineNode,
    Map<String, HTableDescriptor> htds) throws IOException {
  checkOpen();
  HRegion onlineRegion = this.getFromOnlineRegions(region.getEncodedName());
  if (null != onlineRegion) {
    // See HBASE-5094. Cross check with META if still this RS is owning the
    // region.
    Pair<HRegionInfo, ServerName> p =
        MetaReader.getRegion(this.catalogTracker, region.getRegionName());
    if (this.getServerName().equals(p.getSecond())) {
      LOG.warn("Attempted open of " + region.getEncodedName()
          + " but already online on this server");
      return RegionOpeningState.ALREADY_OPENED;
    } else {
      LOG.warn("The region " + region.getEncodedName()
          + " is online on this server but META does not have this server.");
      this.removeFromOnlineRegions(region.getEncodedName());
    }
  }
  // Added to in-memory RS RIT that we are trying to open this region.
  // Clear it if we fail queuing an open executor.
  boolean isNewRit = addRegionsInTransition(region, OPEN);
  if (!isNewRit) {
    // An open is in progress. This is supported, but let's log this.
    LOG.info("Receiving OPEN for the region:" + region.getRegionNameAsString()
        + " , which we are already trying to OPEN"
        + " - ignoring this new request for this region.");
    return RegionOpeningState.OPENED;
  }
  try {
    LOG.info("Received request to open region: " + region.getRegionNameAsString());
    HTableDescriptor htd = null;
    if (htds == null) {
      htd = this.tableDescriptors.get(region.getTableName());
    } else {
      htd = htds.get(region.getTableNameAsString());
      if (htd == null) {
        htd = this.tableDescriptors.get(region.getTableName());
        htds.put(region.getTableNameAsString(), htd);
      }
    }

    // Mark the region as OPENING up in zk. This is how we tell the master control of the
    // region has passed to this regionserver.
    int version = transitionZookeeperOfflineToOpening(region, versionOfOfflineNode);
    // Need to pass the expected version in the constructor.
    if (region.isRootRegion()) {
      this.service.submit(new OpenRootHandler(this, this, region, htd, version));
    } else if (region.isMetaRegion()) {
      this.service.submit(new OpenMetaHandler(this, this, region, htd, version));
    } else {
      this.service.submit(new OpenRegionHandler(this, this, region, htd, version));
    }
  } catch (IOException ie) {
    // Clear from this server's RIT list else will stick around for ever.
    removeFromRegionsInTransition(region);
    throw ie;
  }
  return RegionOpeningState.OPENED;
}
项目:pbase    文件:TestRegionServerNoMaster.java   
/**
 * Test that if we do a close while opening it stops the opening.
 */
@Test(timeout = 60000)
public void testCancelOpeningWithoutZK() throws Exception {
  // We close
  closeNoZK();
  checkRegionIsClosed();

  // Let do the initial steps, without having a handler
  ZKAssign.createNodeOffline(HTU.getZooKeeperWatcher(), hri, getRS().getServerName());
  getRS().getRegionsInTransitionInRS().put(hri.getEncodedNameAsBytes(), Boolean.TRUE);

  // That's a close without ZK.
  AdminProtos.CloseRegionRequest crr =
      RequestConverter.buildCloseRegionRequest(getRS().getServerName(), regionName, false);
  try {
    getRS().rpcServices.closeRegion(null, crr);
    Assert.assertTrue(false);
  } catch (ServiceException expected) {
  }

  // The state in RIT should have changed to close
  Assert.assertEquals(Boolean.FALSE, getRS().getRegionsInTransitionInRS().get(
      hri.getEncodedNameAsBytes()));

  // Let's start the open handler
  HTableDescriptor htd = getRS().tableDescriptors.get(hri.getTable());

  BaseCoordinatedStateManager csm = new ZkCoordinatedStateManager();
  csm.initialize(getRS());
  csm.start();

  ZkOpenRegionCoordination.ZkOpenRegionDetails zkCrd =
    new ZkOpenRegionCoordination.ZkOpenRegionDetails();
  zkCrd.setServerName(getRS().getServerName());
  zkCrd.setVersionOfOfflineNode(0);

  getRS().service.submit(new OpenRegionHandler(getRS(), getRS(), hri, htd,
    csm.getOpenRegionCoordination(), zkCrd));

  // The open handler should have removed the region from RIT but kept the region closed
  checkRegionIsClosed();

  // The open handler should have updated the value in ZK.
  Assert.assertTrue(ZKAssign.deleteNode(
      getRS().getZooKeeper(), hri.getEncodedName(),
      EventType.RS_ZK_REGION_FAILED_OPEN, 1)
  );

  reopenRegion();
}
项目:pbase    文件:TestRegionServerNoMaster.java   
/**
 * Test an open then a close with ZK. This is going to mess-up the ZK states, so
 * the opening will fail as well because it doesn't find what it expects in ZK.
 */
@Test(timeout = 60000)
public void testCancelOpeningWithZK() throws Exception {
  // We close
  closeNoZK();
  checkRegionIsClosed();

  // Let do the initial steps, without having a handler
  getRS().getRegionsInTransitionInRS().put(hri.getEncodedNameAsBytes(), Boolean.TRUE);

  // That's a close without ZK.
  ZKAssign.createNodeClosing(HTU.getZooKeeperWatcher(), hri, getRS().getServerName());
  AdminProtos.CloseRegionRequest crr =
      RequestConverter.buildCloseRegionRequest(getRS().getServerName(), regionName, false);
  try {
    getRS().rpcServices.closeRegion(null, crr);
    Assert.assertTrue(false);
  } catch (ServiceException expected) {
    Assert.assertTrue(expected.getCause() instanceof RegionAlreadyInTransitionException);
  }

  // The close should have left the ZK state as it is: it's the job the AM to delete it
  Assert.assertTrue(ZKAssign.deleteNode(
      getRS().getZooKeeper(), hri.getEncodedName(),
      EventType.M_ZK_REGION_CLOSING, 0)
  );

  // The state in RIT should have changed to close
  Assert.assertEquals(Boolean.FALSE, getRS().getRegionsInTransitionInRS().get(
      hri.getEncodedNameAsBytes()));

  // Let's start the open handler
  // It should not succeed for two reasons:
  //  1) There is no ZK node
  //  2) The region in RIT was changed.
  // The order is more or less implementation dependant.
  HTableDescriptor htd = getRS().tableDescriptors.get(hri.getTable());

  BaseCoordinatedStateManager csm = new ZkCoordinatedStateManager();
  csm.initialize(getRS());
  csm.start();

  ZkOpenRegionCoordination.ZkOpenRegionDetails zkCrd =
    new ZkOpenRegionCoordination.ZkOpenRegionDetails();
  zkCrd.setServerName(getRS().getServerName());
  zkCrd.setVersionOfOfflineNode(0);

  getRS().service.submit(new OpenRegionHandler(getRS(), getRS(), hri, htd,
    csm.getOpenRegionCoordination(), zkCrd));

  // The open handler should have removed the region from RIT but kept the region closed
  checkRegionIsClosed();

  // We should not find any znode here.
  Assert.assertEquals(-1, ZKAssign.getVersion(HTU.getZooKeeperWatcher(), hri));

  reopenRegion();
}
项目:HIndex    文件:TestRegionServerNoMaster.java   
/**
 * Test an open then a close with ZK. This is going to mess-up the ZK states, so
 * the opening will fail as well because it doesn't find what it expects in ZK.
 */
@Test(timeout = 60000)
public void testCancelOpeningWithZK() throws Exception {
  // We close
  closeNoZK();
  checkRegionIsClosed();

  // Let do the initial steps, without having a handler
  getRS().getRegionsInTransitionInRS().put(hri.getEncodedNameAsBytes(), Boolean.TRUE);

  // That's a close without ZK.
  ZKAssign.createNodeClosing(HTU.getZooKeeperWatcher(), hri, getRS().getServerName());
  AdminProtos.CloseRegionRequest crr =
      RequestConverter.buildCloseRegionRequest(getRS().getServerName(), regionName, false);
  try {
    getRS().closeRegion(null, crr);
    Assert.assertTrue(false);
  } catch (ServiceException expected) {
    Assert.assertTrue(expected.getCause() instanceof NotServingRegionException);
  }

  // The close should have left the ZK state as it is: it's the job the AM to delete it
  Assert.assertTrue(ZKAssign.deleteNode(
      getRS().getZooKeeperWatcher(), hri.getEncodedName(),
      EventType.M_ZK_REGION_CLOSING, 0)
  );

  // The state in RIT should have changed to close
  Assert.assertEquals(Boolean.FALSE, getRS().getRegionsInTransitionInRS().get(
      hri.getEncodedNameAsBytes()));

  // Let's start the open handler
  // It should not succeed for two reasons:
  //  1) There is no ZK node
  //  2) The region in RIT was changed.
  // The order is more or less implementation dependant.
  HTableDescriptor htd = getRS().tableDescriptors.get(hri.getTable());
  getRS().service.submit(new OpenRegionHandler(getRS(), getRS(), hri, htd, 0));

  // The open handler should have removed the region from RIT but kept the region closed
  checkRegionIsClosed();

  // We should not find any znode here.
  Assert.assertEquals(-1, ZKAssign.getVersion(HTU.getZooKeeperWatcher(), hri));

  reopenRegion();
}
项目:IRIndex    文件:HRegionServer.java   
private RegionOpeningState openRegion(HRegionInfo region, int versionOfOfflineNode,
    Map<String, HTableDescriptor> htds) throws IOException {
  checkOpen();
  HRegion onlineRegion = this.getFromOnlineRegions(region.getEncodedName());
  if (null != onlineRegion) {
    // See HBASE-5094. Cross check with META if still this RS is owning the
    // region.
    Pair<HRegionInfo, ServerName> p = MetaReader.getRegion(
        this.catalogTracker, region.getRegionName());
    if (this.getServerName().equals(p.getSecond())) {
      LOG.warn("Attempted open of " + region.getEncodedName()
          + " but already online on this server");
      return RegionOpeningState.ALREADY_OPENED;
    } else {
      LOG.warn("The region " + region.getEncodedName()
          + " is online on this server but META does not have this server.");
      this.removeFromOnlineRegions(region.getEncodedName());
    }
  }
  // Added to in-memory RS RIT that we are trying to open this region.
  // Clear it if we fail queuing an open executor.
  boolean isNewRit = addRegionsInTransition(region, OPEN);
  if (!isNewRit) {
    // An open is in progress. This is supported, but let's log this.
    LOG.info("Receiving OPEN for the region:" +
        region.getRegionNameAsString() + " , which we are already trying to OPEN" +
        " - ignoring this new request for this region.");
    return RegionOpeningState.OPENED;
  }
  try {
    LOG.info("Received request to open region: " +
      region.getRegionNameAsString());
    HTableDescriptor htd = null;
    if (htds == null) {
      htd = this.tableDescriptors.get(region.getTableName());
    } else {
      htd = htds.get(region.getTableNameAsString());
      if (htd == null) {
        htd = this.tableDescriptors.get(region.getTableName());
        htds.put(region.getTableNameAsString(), htd);
      }
    }

    // Mark the region as OPENING up in zk.  This is how we tell the master control of the
    // region has passed to this regionserver.
    int version = transitionZookeeperOfflineToOpening(region, versionOfOfflineNode);
    // Need to pass the expected version in the constructor.
    if (region.isRootRegion()) {
      this.service.submit(new OpenRootHandler(this, this, region, htd, version));
    } else if (region.isMetaRegion()) {
      this.service.submit(new OpenMetaHandler(this, this, region, htd, version));
    } else {
      this.service.submit(new OpenRegionHandler(this, this, region, htd, version));
    }
  } catch (IOException ie) {
    // Clear from this server's RIT list else will stick around for ever.
    removeFromRegionsInTransition(region);
    throw ie;
  }
  return RegionOpeningState.OPENED;
}
项目:PyroDB    文件:TestRegionServerNoMaster.java   
/**
 * Test an open then a close with ZK. This is going to mess-up the ZK states, so
 * the opening will fail as well because it doesn't find what it expects in ZK.
 */
@Test(timeout = 60000)
public void testCancelOpeningWithZK() throws Exception {
  // We close
  closeNoZK();
  checkRegionIsClosed();

  // Let do the initial steps, without having a handler
  getRS().getRegionsInTransitionInRS().put(hri.getEncodedNameAsBytes(), Boolean.TRUE);

  // That's a close without ZK.
  ZKAssign.createNodeClosing(HTU.getZooKeeperWatcher(), hri, getRS().getServerName());
  AdminProtos.CloseRegionRequest crr =
      RequestConverter.buildCloseRegionRequest(getRS().getServerName(), regionName, false);
  try {
    getRS().rpcServices.closeRegion(null, crr);
    Assert.assertTrue(false);
  } catch (ServiceException expected) {
    Assert.assertTrue(expected.getCause() instanceof NotServingRegionException);
  }

  // The close should have left the ZK state as it is: it's the job the AM to delete it
  Assert.assertTrue(ZKAssign.deleteNode(
      getRS().getZooKeeper(), hri.getEncodedName(),
      EventType.M_ZK_REGION_CLOSING, 0)
  );

  // The state in RIT should have changed to close
  Assert.assertEquals(Boolean.FALSE, getRS().getRegionsInTransitionInRS().get(
      hri.getEncodedNameAsBytes()));

  // Let's start the open handler
  // It should not succeed for two reasons:
  //  1) There is no ZK node
  //  2) The region in RIT was changed.
  // The order is more or less implementation dependant.
  HTableDescriptor htd = getRS().tableDescriptors.get(hri.getTable());
  getRS().service.submit(new OpenRegionHandler(getRS(), getRS(), hri, htd, 0));

  // The open handler should have removed the region from RIT but kept the region closed
  checkRegionIsClosed();

  // We should not find any znode here.
  Assert.assertEquals(-1, ZKAssign.getVersion(HTU.getZooKeeperWatcher(), hri));

  reopenRegion();
}
项目:c5    文件:TestRegionServerNoMaster.java   
/**
 * Test an open then a close with ZK. This is going to mess-up the ZK states, so
 * the opening will fail as well because it doesn't find what it expects in ZK.
 */
@Test(timeout = 60000)
public void testCancelOpeningWithZK() throws Exception {
  // We close
  closeNoZK();
  checkRegionIsClosed();

  // Let do the initial steps, without having a handler
  getRS().getRegionsInTransitionInRS().put(hri.getEncodedNameAsBytes(), Boolean.TRUE);

  // That's a close without ZK.
  ZKAssign.createNodeClosing(HTU.getZooKeeperWatcher(), hri, getRS().getServerName());
  AdminProtos.CloseRegionRequest crr =
      RequestConverter.buildCloseRegionRequest(regionName, false);
  try {
    getRS().closeRegion(null, crr);
    Assert.assertTrue(false);
  } catch (ServiceException expected) {
    Assert.assertTrue(expected.getCause() instanceof NotServingRegionException);
  }

  // The close should have left the ZK state as it is: it's the job the AM to delete it
  Assert.assertTrue(ZKAssign.deleteNode(
      getRS().getZooKeeperWatcher(), hri.getEncodedName(),
      EventType.M_ZK_REGION_CLOSING, 0)
  );

  // The state in RIT should have changed to close
  Assert.assertEquals(Boolean.FALSE, getRS().getRegionsInTransitionInRS().get(
      hri.getEncodedNameAsBytes()));

  // Let's start the open handler
  // It should not succeed for two reasons:
  //  1) There is no ZK node
  //  2) The region in RIT was changed.
  // The order is more or less implementation dependant.
  HTableDescriptor htd = getRS().tableDescriptors.get(hri.getTable());
  getRS().service.submit(new OpenRegionHandler(getRS(), getRS(), hri, htd, 0));

  // The open handler should have removed the region from RIT but kept the region closed
  checkRegionIsClosed();

  // We should not find any znode here.
  Assert.assertEquals(-1, ZKAssign.getVersion(HTU.getZooKeeperWatcher(), hri));

  reopenRegion();
}
项目:HBase-Research    文件:HRegionServer.java   
private RegionOpeningState openRegion(HRegionInfo region, int versionOfOfflineNode,
    Map<String, HTableDescriptor> htds) throws IOException {
  checkOpen();
  HRegion onlineRegion = this.getFromOnlineRegions(region.getEncodedName());
  if (null != onlineRegion) {
    // See HBASE-5094. Cross check with META if still this RS is owning the
    // region.
    Pair<HRegionInfo, ServerName> p = MetaReader.getRegion(
        this.catalogTracker, region.getRegionName());
    if (this.getServerName().equals(p.getSecond())) {
      LOG.warn("Attempted open of " + region.getEncodedName()
          + " but already online on this server");
      return RegionOpeningState.ALREADY_OPENED;
    } else {
      LOG.warn("The region " + region.getEncodedName()
          + " is online on this server but META does not have this server.");
      this.removeFromOnlineRegions(region.getEncodedName());
    }
  }
  // Added to in-memory RS RIT that we are trying to open this region.
  // Clear it if we fail queuing an open executor.
  boolean isNewRit = addRegionsInTransition(region, OPEN);
  if (!isNewRit) {
    // An open is in progress. This is supported, but let's log this.
    LOG.info("Receiving OPEN for the region:" +
        region.getRegionNameAsString() + " , which we are already trying to OPEN" +
        " - ignoring this new request for this region.");
    return RegionOpeningState.OPENED;
  }
  try {
    LOG.info("Received request to open region: " +
      region.getRegionNameAsString());
    HTableDescriptor htd = null;
    if (htds == null) {
      htd = this.tableDescriptors.get(region.getTableName());
    } else {
      htd = htds.get(region.getTableNameAsString());
      if (htd == null) {
        htd = this.tableDescriptors.get(region.getTableName());
        htds.put(region.getTableNameAsString(), htd);
      }
    }

    // Mark the region as OPENING up in zk.  This is how we tell the master control of the
    // region has passed to this regionserver.
    int version = transitionZookeeperOfflineToOpening(region, versionOfOfflineNode);
    // Need to pass the expected version in the constructor.
    if (region.isRootRegion()) {
      this.service.submit(new OpenRootHandler(this, this, region, htd, version));
    } else if (region.isMetaRegion()) {
      this.service.submit(new OpenMetaHandler(this, this, region, htd, version));
    } else {
      this.service.submit(new OpenRegionHandler(this, this, region, htd, version));
    }
  } catch (IOException ie) {
    // Clear from this server's RIT list else will stick around for ever.
    removeFromRegionsInTransition(region);
    throw ie;
  }
  return RegionOpeningState.OPENED;
}
项目:hbase-0.94.8-qod    文件:HRegionServer.java   
private RegionOpeningState openRegion(HRegionInfo region, int versionOfOfflineNode,
    Map<String, HTableDescriptor> htds) throws IOException {
  checkOpen();
  HRegion onlineRegion = this.getFromOnlineRegions(region.getEncodedName());
  if (null != onlineRegion) {
    // See HBASE-5094. Cross check with META if still this RS is owning the
    // region.
    Pair<HRegionInfo, ServerName> p = MetaReader.getRegion(
        this.catalogTracker, region.getRegionName());
    if (this.getServerName().equals(p.getSecond())) {
      LOG.warn("Attempted open of " + region.getEncodedName()
          + " but already online on this server");
      return RegionOpeningState.ALREADY_OPENED;
    } else {
      LOG.warn("The region " + region.getEncodedName()
          + " is online on this server but META does not have this server.");
      this.removeFromOnlineRegions(region.getEncodedName());
    }
  }
  // Added to in-memory RS RIT that we are trying to open this region.
  // Clear it if we fail queuing an open executor.
  boolean isNewRit = addRegionsInTransition(region, OPEN);
  if (!isNewRit) {
    // An open is in progress. This is supported, but let's log this.
    LOG.info("Receiving OPEN for the region:" +
        region.getRegionNameAsString() + " , which we are already trying to OPEN" +
        " - ignoring this new request for this region.");
    return RegionOpeningState.OPENED;
  }
  try {
    LOG.info("Received request to open region: " +
      region.getRegionNameAsString());
    HTableDescriptor htd = null;
    if (htds == null) {
      htd = this.tableDescriptors.get(region.getTableName());
    } else {
      htd = htds.get(region.getTableNameAsString());
      if (htd == null) {
        htd = this.tableDescriptors.get(region.getTableName());
        htds.put(region.getTableNameAsString(), htd);
      }
    }

    // Mark the region as OPENING up in zk.  This is how we tell the master control of the
    // region has passed to this regionserver.
    int version = transitionZookeeperOfflineToOpening(region, versionOfOfflineNode);
    // Need to pass the expected version in the constructor.
    if (region.isRootRegion()) {
      this.service.submit(new OpenRootHandler(this, this, region, htd, version));
    } else if (region.isMetaRegion()) {
      this.service.submit(new OpenMetaHandler(this, this, region, htd, version));
    } else {
      this.service.submit(new OpenRegionHandler(this, this, region, htd, version));
    }
  } catch (IOException ie) {
    // Clear from this server's RIT list else will stick around for ever.
    removeFromRegionsInTransition(region);
    throw ie;
  }
  return RegionOpeningState.OPENED;
}
项目:hbase-0.94.8-qod    文件:HRegionServer.java   
private RegionOpeningState openRegion(HRegionInfo region, int versionOfOfflineNode,
    Map<String, HTableDescriptor> htds) throws IOException {
  checkOpen();
  HRegion onlineRegion = this.getFromOnlineRegions(region.getEncodedName());
  if (null != onlineRegion) {
    // See HBASE-5094. Cross check with META if still this RS is owning the
    // region.
    Pair<HRegionInfo, ServerName> p = MetaReader.getRegion(
        this.catalogTracker, region.getRegionName());
    if (this.getServerName().equals(p.getSecond())) {
      LOG.warn("Attempted open of " + region.getEncodedName()
          + " but already online on this server");
      return RegionOpeningState.ALREADY_OPENED;
    } else {
      LOG.warn("The region " + region.getEncodedName()
          + " is online on this server but META does not have this server.");
      this.removeFromOnlineRegions(region.getEncodedName());
    }
  }
  // Added to in-memory RS RIT that we are trying to open this region.
  // Clear it if we fail queuing an open executor.
  boolean isNewRit = addRegionsInTransition(region, OPEN);
  if (!isNewRit) {
    // An open is in progress. This is supported, but let's log this.
    LOG.info("Receiving OPEN for the region:" +
        region.getRegionNameAsString() + " , which we are already trying to OPEN" +
        " - ignoring this new request for this region.");
    return RegionOpeningState.OPENED;
  }
  try {
    LOG.info("Received request to open region: " +
      region.getRegionNameAsString());
    HTableDescriptor htd = null;
    if (htds == null) {
      htd = this.tableDescriptors.get(region.getTableName());
    } else {
      htd = htds.get(region.getTableNameAsString());
      if (htd == null) {
        htd = this.tableDescriptors.get(region.getTableName());
        htds.put(region.getTableNameAsString(), htd);
      }
    }

    // Mark the region as OPENING up in zk.  This is how we tell the master control of the
    // region has passed to this regionserver.
    int version = transitionZookeeperOfflineToOpening(region, versionOfOfflineNode);
    // Need to pass the expected version in the constructor.
    if (region.isRootRegion()) {
      this.service.submit(new OpenRootHandler(this, this, region, htd, version));
    } else if (region.isMetaRegion()) {
      this.service.submit(new OpenMetaHandler(this, this, region, htd, version));
    } else {
      this.service.submit(new OpenRegionHandler(this, this, region, htd, version));
    }
  } catch (IOException ie) {
    // Clear from this server's RIT list else will stick around for ever.
    removeFromRegionsInTransition(region);
    throw ie;
  }
  return RegionOpeningState.OPENED;
}
项目:DominoHBase    文件:TestRegionServerNoMaster.java   
/**
 * Test an open then a close with ZK. This is going to mess-up the ZK states, so
 * the opening will fail as well because it doesn't find what it expects in ZK.
 */
@Test(timeout = 20000)
public void testCancelOpeningWithZK() throws Exception {
  // We close
  closeNoZK();
  checkRegionIsClosed();

  // Let do the initial steps, without having a handler
  getRS().getRegionsInTransitionInRS().put(hri.getEncodedNameAsBytes(), Boolean.TRUE);

  // That's a close without ZK.
  ZKAssign.createNodeClosing(HTU.getZooKeeperWatcher(), hri, getRS().getServerName());
  AdminProtos.CloseRegionRequest crr =
      RequestConverter.buildCloseRegionRequest(regionName, false);
  try {
    getRS().closeRegion(null, crr);
    Assert.assertTrue(false);
  } catch (ServiceException expected) {
    Assert.assertTrue(expected.getCause() instanceof NotServingRegionException);
  }

  // The close should have left the ZK state as it is: it's the job the AM to delete it
  Assert.assertTrue(ZKAssign.deleteNode(
      getRS().getZooKeeperWatcher(), hri.getEncodedName(),
      EventHandler.EventType.M_ZK_REGION_CLOSING, 0)
  );

  // The state in RIT should have changed to close
  Assert.assertEquals(Boolean.FALSE, getRS().getRegionsInTransitionInRS().get(
      hri.getEncodedNameAsBytes()));

  // Let's start the open handler
  // It should not succeed for two reasons:
  //  1) There is no ZK node
  //  2) The region in RIT was changed.
  // The order is more or less implementation dependant.
  HTableDescriptor htd = getRS().tableDescriptors.get(hri.getTableName());
  getRS().service.submit(new OpenRegionHandler(getRS(), getRS(), hri, htd, 0));

  // The open handler should have removed the region from RIT but kept the region closed
  checkRegionIsClosed();

  // We should not find any znode here.
  Assert.assertEquals(-1, ZKAssign.getVersion(HTU.getZooKeeperWatcher(), hri));

  reopenRegion();
}
项目:hindex    文件:HRegionServer.java   
private RegionOpeningState openRegion(HRegionInfo region, int versionOfOfflineNode,
    Map<String, HTableDescriptor> htds) throws IOException {
  checkOpen();
  HRegion onlineRegion = this.getFromOnlineRegions(region.getEncodedName());
  if (null != onlineRegion) {
    // See HBASE-5094. Cross check with META if still this RS is owning the
    // region.
    Pair<HRegionInfo, ServerName> p = MetaReader.getRegion(
        this.catalogTracker, region.getRegionName());
    if (this.getServerName().equals(p.getSecond())) {
      LOG.warn("Attempted open of " + region.getEncodedName()
          + " but already online on this server");
      return RegionOpeningState.ALREADY_OPENED;
    } else {
      LOG.warn("The region " + region.getEncodedName()
          + " is online on this server but META does not have this server.");
      this.removeFromOnlineRegions(region.getEncodedName());
    }
  }
  // Added to in-memory RS RIT that we are trying to open this region.
  // Clear it if we fail queuing an open executor.
  boolean isNewRit = addRegionsInTransition(region, OPEN);
  if (!isNewRit) {
    // An open is in progress. This is supported, but let's log this.
    LOG.info("Receiving OPEN for the region:" +
        region.getRegionNameAsString() + " , which we are already trying to OPEN" +
        " - ignoring this new request for this region.");
    return RegionOpeningState.OPENED;
  }
  try {
    LOG.info("Received request to open region: " +
      region.getRegionNameAsString());
    HTableDescriptor htd = null;
    if (htds == null) {
      htd = this.tableDescriptors.get(region.getTableName());
    } else {
      htd = htds.get(region.getTableNameAsString());
      if (htd == null) {
        htd = this.tableDescriptors.get(region.getTableName());
        htds.put(region.getTableNameAsString(), htd);
      }
    }

    // Mark the region as OPENING up in zk.  This is how we tell the master control of the
    // region has passed to this regionserver.
    int version = transitionZookeeperOfflineToOpening(region, versionOfOfflineNode);
    // Need to pass the expected version in the constructor.
    if (region.isRootRegion()) {
      this.service.submit(new OpenRootHandler(this, this, region, htd, version));
    } else if (region.isMetaRegion()) {
      this.service.submit(new OpenMetaHandler(this, this, region, htd, version));
    } else {
      this.service.submit(new OpenRegionHandler(this, this, region, htd, version));
    }
  } catch (IOException ie) {
    // Clear from this server's RIT list else will stick around for ever.
    removeFromRegionsInTransition(region);
    throw ie;
  }
  return RegionOpeningState.OPENED;
}