我的 hdfs-site.xml 只有以下内容:
<configuration>
<property>
<name>dfs.replication</name>
<value>1</value>
</property>
</configuration>
问题。NameNode 和 DataNode 将安装在哪里?我在装有 Windows 10 的 MSFT Surface 笔记本电脑上使用 Hadoop 3.0.3 版本。
在hdfs-default.xml dfs.datanode.data.dir
中,默认值为file://${hadoop.tmp.dir}/dfs/data
anddfs.namenode.name.dir
file://${hadoop.tmp.dir}/dfs/name
在core-default.xml hadoop.tmp.dir
中的值为/tmp/hadoop-${user.name}
因此datanode
位于 /tmp/hadoop-${user.name}/dfs/data 并将namenode
位于 /tmp/hadoop-${user.name}/dfs/name 位置。