Examples of NodeExistsException


Examples of org.apache.zookeeper.KeeperException.NodeExistsException

          if (e instanceof NodeExistsException) {
            // Handle race between master initiated close and regionserver
            // orchestrated splitting. See if existing node is in a
            // SPLITTING or SPLIT state.  If so, the regionserver started
            // an op on node before we could get our CLOSING in.  Deal.
            NodeExistsException nee = (NodeExistsException)e;
            String path = nee.getPath();
            try {
              if (isSplitOrSplitting(path)) {
                LOG.debug(path + " is SPLIT or SPLITTING; " +
                  "skipping unassign because region no longer exists -- its split");
                return;
View Full Code Here

Examples of org.globus.workspace.scheduler.NodeExistsException

        final ResourcepoolEntry existing =
                this.db.getResourcepoolEntry(hostname);

        if (existing != null) {
            throw new NodeExistsException("A VMM node with the hostname "+
                    hostname+" already exists in the pool");
        }

        // This will catch the corner case of one or many VMs being started
        // on a node, the node being deleted from the configuration, the node
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.