本文整理了Java中org.apache.hadoop.hbase.ZNodeClearer.clear()
方法的一些代码示例,展示了ZNodeClearer.clear()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZNodeClearer.clear()
方法的具体详情如下:
包路径:org.apache.hadoop.hbase.ZNodeClearer
类名称:ZNodeClearer
方法名:clear
[英]Delete the master znode if its content (ServerName string) is the same as the one in the znode file. (env: HBASE_ZNODE_FILE). I case of master-rs colloaction we extract ServerName string from rsZnode path.(HBASE-14861)
[中]如果主znode的内容(ServerName字符串)与znode文件中的内容相同,则删除主znode。(env:HBASE_ZNODE_文件)。在master rs colloaction的情况下,我们从rsZnode路径提取ServerName字符串。(HBASE-14861)
代码示例来源:origin: apache/hbase
return stopMaster();
} else if ("clear".equals(command)) {
return (ZNodeClearer.clear(getConf()) ? 0 : 1);
} else {
usage("Invalid command: " + command);
代码示例来源:origin: harbby/presto-connectors
return stopMaster();
} else if ("clear".equals(command)) {
return (ZNodeClearer.clear(getConf()) ? 0 : 1);
} else {
usage("Invalid command: " + command);
内容来源于网络,如有侵权,请联系作者删除!