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

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

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

ZKSplitLog.encode介绍

暂无

代码示例

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

/**
 * Gets the full path node name for the log file being split.
 * This method will url encode the filename.
 * @param zkw zk reference
 * @param filename log file name (only the basename)
 */
public static String getEncodedNodeName(ZKWatcher zkw, String filename) {
 return ZNodePaths.joinZNode(zkw.getZNodePaths().splitLogZNode, encode(filename));
}

代码示例来源:origin: co.cask.hbase/hbase

public static String getSplitLogDirTmpComponent(String worker, String file) {
 return (worker + "_" + ZKSplitLog.encode(file));
}

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

public static String getSplitLogDirTmpComponent(final String worker, String file) {
 return worker + "_" + ZKSplitLog.encode(file);
}

代码示例来源:origin: co.cask.hbase/hbase

/**
 * Gets the full path node name for the log file being split.
 * This method will url encode the filename.
 * @param zkw zk reference
 * @param filename log file name (only the basename)
 */
public static String getEncodedNodeName(ZooKeeperWatcher zkw,
  String filename) {
  return ZKUtil.joinZNode(zkw.splitLogZNode, encode(filename));
}

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

/**
 * Gets the full path node name for the log file being split.
 * This method will url encode the filename.
 * @param zkw zk reference
 * @param filename log file name (only the basename)
 */
public static String getEncodedNodeName(ZooKeeperWatcher zkw, String filename) {
 return ZKUtil.joinZNode(zkw.splitLogZNode, encode(filename));
}

代码示例来源:origin: org.apache.hbase/hbase-zookeeper

/**
 * Gets the full path node name for the log file being split.
 * This method will url encode the filename.
 * @param zkw zk reference
 * @param filename log file name (only the basename)
 */
public static String getEncodedNodeName(ZKWatcher zkw, String filename) {
 return ZNodePaths.joinZNode(zkw.getZNodePaths().splitLogZNode, encode(filename));
}

相关文章