我正在尝试使用webhdfs从hadoop获取文件,现在webhdfs将我重定向到datanodes。它返回地址中的主机名,有没有办法让它返回ip地址而不是主机名?
qnakjoqk1#
dfs.datanode.hostname Optional. The hostname for the Datanode containing this configuration file. Will be different for each machine. Defaults to current hostname.
在hdfs-site.xml中,可以设置dfs.datanode.hostname。
<property> <name>dfs.datanode.hostname</name> <value>IP-ADDRESS</value> </property>
通过这样做,webhdfs将返回datanode的ip地址。
1条答案
按热度按时间qnakjoqk1#
在hdfs-site.xml中,可以设置dfs.datanode.hostname。
通过这样做,webhdfs将返回datanode的ip地址。