gpt4 book ai didi

org.apache.hadoop.hbase.zookeeper.ZooKeeperWatcher.isAnyMetaReplicaZnode()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-15 00:30:49 27 4
gpt4 key购买 nike

本文整理了Java中org.apache.hadoop.hbase.zookeeper.ZooKeeperWatcher.isAnyMetaReplicaZnode()方法的一些代码示例,展示了ZooKeeperWatcher.isAnyMetaReplicaZnode()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZooKeeperWatcher.isAnyMetaReplicaZnode()方法的具体详情如下:
包路径:org.apache.hadoop.hbase.zookeeper.ZooKeeperWatcher
类名称:ZooKeeperWatcher
方法名:isAnyMetaReplicaZnode

ZooKeeperWatcher.isAnyMetaReplicaZnode介绍

[英]Is the znode of any meta replica
[中]是任何元副本的znode

代码示例

代码示例来源:origin: com.aliyun.hbase/alihbase-client

/** Returns whether the znode is supposed to be readable by the client
 * and DOES NOT contain sensitive information (world readable).*/
public boolean isClientReadable(String node) {
 // Developer notice: These znodes are world readable. DO NOT add more znodes here UNLESS
 // all clients need to access this data to work. Using zk for sharing data to clients (other
 // than service lookup case is not a recommended design pattern.
 return
   node.equals(baseZNode) ||
   isAnyMetaReplicaZnode(node) ||
   node.equals(getMasterAddressZNode()) ||
   node.equals(clusterIdZNode)||
   node.equals(rsZNode) ||
   // /hbase/table and /hbase/table/foo is allowed, /hbase/table-lock is not
   node.equals(tableZNode) ||
   node.startsWith(tableZNode + "/");
}

代码示例来源:origin: harbby/presto-connectors

/** Returns whether the znode is supposed to be readable by the client
 * and DOES NOT contain sensitive information (world readable).*/
public boolean isClientReadable(String node) {
 // Developer notice: These znodes are world readable. DO NOT add more znodes here UNLESS
 // all clients need to access this data to work. Using zk for sharing data to clients (other
 // than service lookup case is not a recommended design pattern.
 return
   node.equals(baseZNode) ||
   isAnyMetaReplicaZnode(node) ||
   node.equals(getMasterAddressZNode()) ||
   node.equals(clusterIdZNode)||
   node.equals(rsZNode) ||
   // /hbase/table and /hbase/table/foo is allowed, /hbase/table-lock is not
   node.equals(tableZNode) ||
   node.startsWith(tableZNode + "/");
}

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com