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

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

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

ZNodePaths.isAnyMetaReplicaZNode介绍

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

代码示例

代码示例来源:origin: apache/hbase

/**
 * 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(masterAddressZNode) || 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: apache/hbase

@Override
boolean validate(String path) {
 return watcher.getZNodePaths().isAnyMetaReplicaZNode(path);
}

代码示例来源:origin: org.apache.hbase/hbase-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(masterAddressZNode) || 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: 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(masterAddressZNode) || 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 + "/");
}

相关文章