/** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.hadoop.hbase.master.handler; import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.concurrent.ExecutorService; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.apache.hadoop.classification.InterfaceAudience; import org.apache.hadoop.hbase.HRegionInfo; import org.apache.hadoop.hbase.Server; import org.apache.hadoop.hbase.ServerName; import org.apache.hadoop.hbase.TableNotDisabledException; import org.apache.hadoop.hbase.TableNotFoundException; import org.apache.hadoop.hbase.catalog.CatalogTracker; import org.apache.hadoop.hbase.catalog.MetaReader; import org.apache.hadoop.hbase.executor.EventHandler; import org.apache.hadoop.hbase.master.AssignmentManager; import org.apache.hadoop.hbase.master.BulkAssigner; import org.apache.hadoop.hbase.master.HMaster; import org.apache.hadoop.hbase.master.MasterCoprocessorHost; import org.apache.hadoop.hbase.master.RegionPlan; import org.apache.hadoop.hbase.master.RegionStates; import org.apache.hadoop.hbase.master.ServerManager; import org.apache.hadoop.hbase.util.Bytes; import org.apache.hadoop.hbase.util.Pair; import org.apache.zookeeper.KeeperException; import org.cloudera.htrace.Trace; /** * Handler to run enable of a table. */ @InterfaceAudience.Private public class EnableTableHandler extends EventHandler { private static final Log LOG = LogFactory.getLog(EnableTableHandler.class); private final byte [] tableName; private final String tableNameStr; private final AssignmentManager assignmentManager; private final CatalogTracker ct; private boolean retainAssignment = false; public EnableTableHandler(Server server, byte [] tableName, CatalogTracker catalogTracker, AssignmentManager assignmentManager, boolean skipTableStateCheck) throws TableNotFoundException, TableNotDisabledException, IOException { super(server, EventType.C_M_ENABLE_TABLE); this.tableName = tableName; this.tableNameStr = Bytes.toString(tableName); this.ct = catalogTracker; this.assignmentManager = assignmentManager; this.retainAssignment = skipTableStateCheck; // Check if table exists if (!MetaReader.tableExists(catalogTracker, this.tableNameStr)) { throw new TableNotFoundException(Bytes.toString(tableName)); } // There could be multiple client requests trying to disable or enable // the table at the same time. Ensure only the first request is honored // After that, no other requests can be accepted until the table reaches // DISABLED or ENABLED. if (!skipTableStateCheck) { try { if (!this.assignmentManager.getZKTable().checkDisabledAndSetEnablingTable (this.tableNameStr)) { LOG.info("Table " + tableNameStr + " isn't disabled; skipping enable"); throw new TableNotDisabledException(this.tableNameStr); } } catch (KeeperException e) { throw new IOException("Unable to ensure that the table will be" + " enabling because of a ZooKeeper issue", e); } } } @Override public String toString() { String name = "UnknownServerName"; if(server != null && server.getServerName() != null) { name = server.getServerName().toString(); } return getClass().getSimpleName() + "-" + name + "-" + getSeqid() + "-" + tableNameStr; } @Override public void process() { try { LOG.info("Attempting to enable the table " + this.tableNameStr); MasterCoprocessorHost cpHost = ((HMaster) this.server) .getCoprocessorHost(); if (cpHost != null) { cpHost.preEnableTableHandler(this.tableName); } handleEnableTable(); if (cpHost != null) { cpHost.postEnableTableHandler(this.tableName); } } catch (IOException e) { LOG.error("Error trying to enable the table " + this.tableNameStr, e); } catch (KeeperException e) { LOG.error("Error trying to enable the table " + this.tableNameStr, e); } catch (InterruptedException e) { LOG.error("Error trying to enable the table " + this.tableNameStr, e); } } private void handleEnableTable() throws IOException, KeeperException, InterruptedException { // I could check table is disabling and if so, not enable but require // that user first finish disabling but that might be obnoxious. // Set table enabling flag up in zk. this.assignmentManager.getZKTable().setEnablingTable(this.tableNameStr); boolean done = false; // Get the regions of this table. We're done when all listed // tables are onlined. List<Pair<HRegionInfo, ServerName>> tableRegionsAndLocations = MetaReader .getTableRegionsAndLocations(this.ct, tableName, true); int countOfRegionsInTable = tableRegionsAndLocations.size(); List<HRegionInfo> regions = regionsToAssignWithServerName(tableRegionsAndLocations); int regionsCount = regions.size(); if (regionsCount == 0) { done = true; } LOG.info("Table '" + this.tableNameStr + "' has " + countOfRegionsInTable + " regions, of which " + regionsCount + " are offline."); BulkEnabler bd = new BulkEnabler(this.server, regions, countOfRegionsInTable, this.retainAssignment); try { if (bd.bulkAssign()) { done = true; } } catch (InterruptedException e) { LOG.warn("Enable operation was interrupted when enabling table '" + this.tableNameStr + "'"); // Preserve the interrupt. Thread.currentThread().interrupt(); } if (done) { // Flip the table to enabled. this.assignmentManager.getZKTable().setEnabledTable( this.tableNameStr); LOG.info("Table '" + this.tableNameStr + "' was successfully enabled. Status: done=" + done); } else { LOG.warn("Table '" + this.tableNameStr + "' wasn't successfully enabled. Status: done=" + done); } } /** * @param regionsInMeta * @return List of regions neither in transition nor assigned. * @throws IOException */ private List<HRegionInfo> regionsToAssignWithServerName( final List<Pair<HRegionInfo, ServerName>> regionsInMeta) throws IOException { ServerManager serverManager = ((HMaster) this.server).getServerManager(); List<HRegionInfo> regions = new ArrayList<HRegionInfo>(); RegionStates regionStates = this.assignmentManager.getRegionStates(); for (Pair<HRegionInfo, ServerName> regionLocation : regionsInMeta) { HRegionInfo hri = regionLocation.getFirst(); ServerName sn = regionLocation.getSecond(); if (!regionStates.isRegionInTransition(hri) && !regionStates.isRegionAssigned(hri)) { if (this.retainAssignment && sn != null && serverManager.isServerOnline(sn)) { this.assignmentManager.addPlan(hri.getEncodedName(), new RegionPlan(hri, null, sn)); } regions.add(hri); } else { if (LOG.isDebugEnabled()) { LOG.debug("Skipping assign for the region " + hri + " during enable table " + hri.getTableNameAsString() + " because its already in tranition or assigned."); } } } return regions; } /** * Run bulk enable. */ class BulkEnabler extends BulkAssigner { private final List<HRegionInfo> regions; // Count of regions in table at time this assign was launched. private final int countOfRegionsInTable; private final boolean retainAssignment; BulkEnabler(final Server server, final List<HRegionInfo> regions, final int countOfRegionsInTable, boolean retainAssignment) { super(server); this.regions = regions; this.countOfRegionsInTable = countOfRegionsInTable; this.retainAssignment = retainAssignment; } @Override protected void populatePool(ExecutorService pool) throws IOException { boolean roundRobinAssignment = this.server.getConfiguration().getBoolean( "hbase.master.enabletable.roundrobin", false); // In case of masterRestart always go with single assign. Going thro // roundRobinAssignment will use bulkassign which may lead to double assignment. if (retainAssignment || !roundRobinAssignment) { for (HRegionInfo region : regions) { if (assignmentManager.getRegionStates() .isRegionInTransition(region)) { continue; } final HRegionInfo hri = region; pool.execute(Trace.wrap(new Runnable() { public void run() { assignmentManager.assign(hri, true); } })); } } else { try { assignmentManager.assign(regions); } catch (InterruptedException e) { LOG.warn("Assignment was interrupted"); Thread.currentThread().interrupt(); } } } @Override protected boolean waitUntilDone(long timeout) throws InterruptedException { long startTime = System.currentTimeMillis(); long remaining = timeout; List<HRegionInfo> regions = null; int lastNumberOfRegions = 0; while (!server.isStopped() && remaining > 0) { Thread.sleep(waitingTimeForEvents); regions = assignmentManager.getRegionStates() .getRegionsOfTable(tableName); if (isDone(regions)) break; // Punt on the timeout as long we make progress if (regions.size() > lastNumberOfRegions) { lastNumberOfRegions = regions.size(); timeout += waitingTimeForEvents; } remaining = timeout - (System.currentTimeMillis() - startTime); } return isDone(regions); } private boolean isDone(final List<HRegionInfo> regions) { return regions != null && regions.size() >= this.countOfRegionsInTable; } } }