I am installing a Hadoop distributed mode cluster, and I have downloaded Hadoop and extracted the compressed file. While editing the configuration file, I am having some doubts. What does the fs.defaultFS property does in the core-site.xml file?
I have 3 nodes:
192.168.101.1 --> Master Machine (NameNode, SecondaryNameNode & ResourceManager daemons)
192.168.101.2 --> Slave1 (Datanode & NodeManager daemons)
192.168.103.3 --> Slave2 (Datanode & NodeManager daemons)
My configuration is as below:
<property>
<name>fs.default.name</name>
<value>hdfs://192.168.1.2:9000/</value>
</property>
Do we have to pass the address of the NameNode here?