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

x33g5p2x  于2022-02-05 转载在 其他  
字(1.8k)|赞(0)|评价(0)|浏览(99)

本文整理了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 + "/");
}

相关文章