0

In Hadoop is it mandatory that all the slaves in the Hadoop cluster should be of the same configuration?

unwelcomed_user
  • 340
  • 3
  • 15
Sands
  • 11

1 Answers1

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