当前位置: 首页>>代码示例>>Java>>正文


Java KeeperException.NotEmptyException方法代码示例

本文整理汇总了Java中org.apache.zookeeper.KeeperException.NotEmptyException方法的典型用法代码示例。如果您正苦于以下问题:Java KeeperException.NotEmptyException方法的具体用法?Java KeeperException.NotEmptyException怎么用?Java KeeperException.NotEmptyException使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.zookeeper.KeeperException的用法示例。


在下文中一共展示了KeeperException.NotEmptyException方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getMessage

import org.apache.zookeeper.KeeperException; //导入方法依赖的package包/类
private static String getMessage(Throwable cause) {
    if (cause instanceof  KeeperException) {
        KeeperException keeperException = (KeeperException) cause;
        if (keeperException instanceof KeeperException.NoNodeException) {
            return "Node does not exist: " + keeperException.getPath();
        } else if (keeperException instanceof KeeperException.NoChildrenForEphemeralsException) {
            return "Ephemerals cannot have children: " + keeperException.getPath();
        } else if (keeperException instanceof KeeperException.NodeExistsException) {
            return "Node already exists: " + keeperException.getPath();
        } else if (keeperException instanceof KeeperException.NotEmptyException) {
            return "Node not empty: " + keeperException.getPath();
        } else if (keeperException instanceof KeeperException.NotReadOnlyException) {
            return "Not a read-only call: " + keeperException.getPath();
        } else if (keeperException instanceof KeeperException.InvalidACLException) {
            return "Acl is not valid : " + keeperException.getPath();
        } else if (keeperException instanceof KeeperException.NoAuthException) {
            return "Authentication is not valid : " + keeperException.getPath();
        } else if (keeperException instanceof KeeperException.BadArgumentsException) {
            return "Arguments are not valid : " + keeperException.getPath();
        } else if (keeperException instanceof KeeperException.BadVersionException) {
            return "version No is not valid : " + keeperException.getPath();
        } else if (keeperException instanceof KeeperException.ReconfigInProgress) {
            return "Another reconfiguration is in progress -- concurrent " +
                    "reconfigs not supported (yet)";
        } else if (keeperException instanceof KeeperException.NewConfigNoQuorum) {
            return "No quorum of new config is connected and " +
                    "up-to-date with the leader of last commmitted config - try invoking reconfiguration after " +
                    "new servers are connected and synced";
        }
    }
    return cause.getMessage();
}
 
开发者ID:didichuxing2,项目名称:https-github.com-apache-zookeeper,代码行数:33,代码来源:CliWrapperException.java

示例2: deleteAnotherRSQueues

import org.apache.zookeeper.KeeperException; //导入方法依赖的package包/类
/**
 * Delete all the replication queues for a given region server.
 * @param regionserverZnode The znode of the region server to delete.
 */
private void deleteAnotherRSQueues(String regionserverZnode) {
  String fullpath = ZKUtil.joinZNode(this.queuesZNode, regionserverZnode);
  try {
    List<String> clusters = ZKUtil.listChildrenNoWatch(this.zookeeper, fullpath);
    for (String cluster : clusters) {
      // No need to delete, it will be deleted later.
      if (cluster.equals(RS_LOCK_ZNODE)) {
        continue;
      }
      String fullClusterPath = ZKUtil.joinZNode(fullpath, cluster);
      ZKUtil.deleteNodeRecursively(this.zookeeper, fullClusterPath);
    }
    // Finish cleaning up
    ZKUtil.deleteNodeRecursively(this.zookeeper, fullpath);
  } catch (KeeperException e) {
    if (e instanceof KeeperException.NoNodeException
        || e instanceof KeeperException.NotEmptyException) {
      // Testing a special case where another region server was able to
      // create a lock just after we deleted it, but then was also able to
      // delete the RS znode before us or its lock znode is still there.
      if (e.getPath().equals(fullpath)) {
        return;
      }
    }
    this.abortable.abort("Failed to delete replication queues for region server: "
        + regionserverZnode, e);
  }
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:33,代码来源:ReplicationQueuesZKImpl.java


注:本文中的org.apache.zookeeper.KeeperException.NotEmptyException方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。