/** * Copyright 2010 The Apache Software Foundation * * 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; import java.util.concurrent.atomic.AtomicBoolean; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.apache.hadoop.hbase.HServerAddress; import org.apache.hadoop.hbase.Server; import org.apache.hadoop.hbase.zookeeper.ZKUtil; import org.apache.hadoop.hbase.zookeeper.ZooKeeperListener; import org.apache.hadoop.hbase.zookeeper.ZooKeeperWatcher; import org.apache.zookeeper.KeeperException; /** * Handles everything on master-side related to master election. * * <p>Listens and responds to ZooKeeper notifications on the master znode, * both <code>nodeCreated</code> and <code>nodeDeleted</code>. * * <p>Contains blocking methods which will hold up backup masters, waiting * for the active master to fail. * * <p>This class is instantiated in the HMaster constructor and the method * {@link #blockUntilBecomingActiveMaster()} is called to wait until becoming * the active master of the cluster. */ class ActiveMasterManager extends ZooKeeperListener { private static final Log LOG = LogFactory.getLog(ActiveMasterManager.class); final AtomicBoolean clusterHasActiveMaster = new AtomicBoolean(false); private final HServerAddress address; private final Server master; ActiveMasterManager(ZooKeeperWatcher watcher, HServerAddress address, Server master) { super(watcher); this.address = address; this.master = master; } @Override public void nodeCreated(String path) { if(path.equals(watcher.masterAddressZNode) && !master.isStopped()) { handleMasterNodeChange(); } } @Override public void nodeDeleted(String path) { if(path.equals(watcher.masterAddressZNode) && !master.isStopped()) { handleMasterNodeChange(); } } /** * Handle a change in the master node. Doesn't matter whether this was called * from a nodeCreated or nodeDeleted event because there are no guarantees * that the current state of the master node matches the event at the time of * our next ZK request. * * <p>Uses the watchAndCheckExists method which watches the master address node * regardless of whether it exists or not. If it does exist (there is an * active master), it returns true. Otherwise it returns false. * * <p>A watcher is set which guarantees that this method will get called again if * there is another change in the master node. */ private void handleMasterNodeChange() { // Watch the node and check if it exists. try { synchronized(clusterHasActiveMaster) { if(ZKUtil.watchAndCheckExists(watcher, watcher.masterAddressZNode)) { // A master node exists, there is an active master LOG.debug("A master is now available"); clusterHasActiveMaster.set(true); } else { // Node is no longer there, cluster does not have an active master LOG.debug("No master available. Notifying waiting threads"); clusterHasActiveMaster.set(false); // Notify any thread waiting to become the active master clusterHasActiveMaster.notifyAll(); } } } catch (KeeperException ke) { master.abort("Received an unexpected KeeperException, aborting", ke); } } /** * Block until becoming the active master. * * Method blocks until there is not another active master and our attempt * to become the new active master is successful. * * This also makes sure that we are watching the master znode so will be * notified if another master dies. * @return True if no issue becoming active master else false if another * master was running or if some other problem (zookeeper, stop flag has been * set on this Master) */ boolean blockUntilBecomingActiveMaster() { boolean cleanSetOfActiveMaster = true; // Try to become the active master, watch if there is another master try { if (ZKUtil.setAddressAndWatch(this.watcher, this.watcher.masterAddressZNode, this.address)) { // We are the master, return this.clusterHasActiveMaster.set(true); LOG.info("Master=" + this.address); return cleanSetOfActiveMaster; } cleanSetOfActiveMaster = false; // There is another active master running elsewhere or this is a restart // and the master ephemeral node has not expired yet. this.clusterHasActiveMaster.set(true); HServerAddress currentMaster = ZKUtil.getDataAsAddress(this.watcher, this.watcher.masterAddressZNode); if (currentMaster != null && currentMaster.equals(this.address)) { LOG.info("Current master has this master's address, " + currentMaster + "; master was restarted? Waiting on znode to expire..."); // Hurry along the expiration of the znode. ZKUtil.deleteNode(this.watcher, this.watcher.masterAddressZNode); } else { LOG.info("Another master is the active master, " + currentMaster + "; waiting to become the next active master"); } } catch (KeeperException ke) { master.abort("Received an unexpected KeeperException, aborting", ke); return false; } synchronized (this.clusterHasActiveMaster) { while (this.clusterHasActiveMaster.get() && !this.master.isStopped()) { try { this.clusterHasActiveMaster.wait(); } catch (InterruptedException e) { // We expect to be interrupted when a master dies, will fall out if so LOG.debug("Interrupted waiting for master to die", e); } } if (this.master.isStopped()) { return cleanSetOfActiveMaster; } // Try to become active master again now that there is no active master blockUntilBecomingActiveMaster(); } return cleanSetOfActiveMaster; } /** * @return True if cluster has an active master. */ public boolean isActiveMaster() { return this.clusterHasActiveMaster.get(); } public void stop() { try { // If our address is in ZK, delete it on our way out HServerAddress zkAddress = ZKUtil.getDataAsAddress(watcher, watcher.masterAddressZNode); // TODO: redo this to make it atomic (only added for tests) if(zkAddress != null && zkAddress.equals(address)) { ZKUtil.deleteNode(watcher, watcher.masterAddressZNode); } } catch (KeeperException e) { LOG.error(this.watcher.prefix("Error deleting our own master address node"), e); } } }