In Hadoop is it mandatory that all the slaves in the Hadoop cluster should be of the same configuration?
Asked
Active
Viewed 256 times
0
-
I suggest you look into using Apache Ambari for managing Hadoop and its configurations – OneCricketeer Feb 12 '19 at 04:36
1 Answers
0
Hadoop datanode can have different configuration like datanode total memory, datanode mount points etc.
Example: Datanode1 etc/hadoop/hdfs-site.xml can be like
<property>
<name>dfs.datanode.data.dir</name>
<value>/mount/data1,/mount/data2,/mount/data3</value>
</property>
Datanode2 etc/hadoop/hdfs-site.xml can be like
<property>
<name>dfs.datanode.data.dir</name>
<value>/mnt/dt1</value>
</property>

unwelcomed_user
- 340
- 3
- 15