本文整理了Java中org.apache.hadoop.hdfs.server.datanode.DataNode.offerService()
方法的一些代码示例,展示了DataNode.offerService()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。DataNode.offerService()
方法的具体详情如下:
包路径:org.apache.hadoop.hdfs.server.datanode.DataNode
类名称:DataNode
方法名:offerService
[英]Main loop for the DataNode. Runs until shutdown, forever calling remote NameNode functions.
[中]DataNode的主循环。运行到关机,永远调用远程NameNode函数。
代码示例来源:origin: org.jvnet.hudson.hadoop/hadoop-core
try {
startDistributedUpgradeIfNeeded();
offerService();
} catch (Exception ex) {
LOG.error("Exception: " + StringUtils.stringifyException(ex));
代码示例来源:origin: io.fabric8/fabric-hadoop
try {
startDistributedUpgradeIfNeeded();
offerService();
} catch (Exception ex) {
LOG.error("Exception: " + StringUtils.stringifyException(ex));
内容来源于网络,如有侵权,请联系作者删除!