Package org.apache.hadoop.hbase.master.handler

Examples of org.apache.hadoop.hbase.master.handler.MergedRegionHandler


            // Move on. Merge already happened (passed PONR), no point to stop now
            LOG.warn("Got merge event, but not in state good for MERGED; rs_a="
              + merge_a + ", rs_b=" + merge_b);
          }
          // Run handler to do the rest of the MERGED handling.
          new MergedRegionHandler(server, this, sn, mergeRegions).process();
          break;

        case M_ZK_REGION_CLOSING:
          // Should see CLOSING after we have asked it to CLOSE or additional
          // times after already being in state of CLOSING
View Full Code Here


              prettyPrintedRegionName);
            break;
          }
          assert mergeRegions.size() == 3;
          // Run handler to do the rest of the MERGE handling.
          this.executorService.submit(new MergedRegionHandler(server, this, sn,
              mergeRegions));
          break;

        case M_ZK_REGION_CLOSING:
          // Should see CLOSING after we have asked it to CLOSE or additional
View Full Code Here

TOP

Related Classes of org.apache.hadoop.hbase.master.handler.MergedRegionHandler

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.