Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

is it necessary to stop the components on each datanode ( worker machine ) in case of adding new disks ?

avatar

we want to understand what is the pre procedure before adding on each worker machine disks

we have ambari cluster version 2.6 with 3 datanode machines ( workers machines )

we want to add on each worker new 5 disks

before adding the new disks do we must to stop the components on each worker machine ( the componets are - data node , matrix monitor , node manager )

or maybe to restart all effected servoces/compontes in enntire cluster?

Michael-Bronson
1 ACCEPTED SOLUTION

avatar
Expert Contributor
@Michael Bronson

It depends on whether the compoennts are going to use the new disks or not. If not, they don't need to restart. For those services that need to use the new disk. Some of them, such as HDFS datanode supported Hot-Swap, which means you can add disks by the following steps without a restart of datanode service.

1> changing the dfs.datanode.data.dir from hdfs-site.xml to include new disk locations (e.g., /data/disk2).
<property>
  <name>dfs.datanode.data.dir</name>
  <value>/data/disk1,/data/disk2</value>
</property>

2> Run hdfs CLI to reconfig datanode service without a restart. 

hdfs dfsadmin-reconfig datanode dn1.hdp.com:9820 start


Other services might need a restart to use the new disks if Hot-Swap is not supported.

View solution in original post

1 REPLY 1

avatar
Expert Contributor
@Michael Bronson

It depends on whether the compoennts are going to use the new disks or not. If not, they don't need to restart. For those services that need to use the new disk. Some of them, such as HDFS datanode supported Hot-Swap, which means you can add disks by the following steps without a restart of datanode service.

1> changing the dfs.datanode.data.dir from hdfs-site.xml to include new disk locations (e.g., /data/disk2).
<property>
  <name>dfs.datanode.data.dir</name>
  <value>/data/disk1,/data/disk2</value>
</property>

2> Run hdfs CLI to reconfig datanode service without a restart. 

hdfs dfsadmin-reconfig datanode dn1.hdp.com:9820 start


Other services might need a restart to use the new disks if Hot-Swap is not supported.