So I have a small Hadoop cluster with 1 master and 5 workers. My hdfs-site.xml for masters and workers look like this:
<configuration>
<property>
<name>dfs.replication</name>
<value>3</value>
</property>
<property>
<name>dfs.namenode.name.dir</name>
<value>file:/home/username/hadoop/yarn/hdfs/namenode</value>
</property>
<property>
<name>dfs.datanode.data.dir</name>
<value>file:/home/username/hadoop/yarn/hdfs/datanode</value>
</property>
</configuration>
My cluster is running smoothly, all daemons runnning fine. I am able to access HDFS to import, export data, run word count jobs, etc... However in my workers, there is no "namenode" folder under "/home/username/hadoop/yarn/hdfs/" path. Is this a normal behaviour?