-
|
Hi everyone, I've successfully decommissioned a DataNode using Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Hi @Pigueiras , looking at the implementation, it seems the
I think since the number of datanodes should fit well in the SCM memory (even for thousands of datanodes), we currently don't see the urgent need to remove the ones in the terminal states. It is also good to know which nodes are decommissioned or dead to troubleshoot issues (instead of them disappearing). In the future, we can support a CLI with similar mechanism to Recon's "/datanodes/remove" endpoint to call |
Beta Was this translation helpful? Give feedback.
Hi @Pigueiras , looking at the implementation, it seems the
DEADandDECOMMISSIONEDnodes are stored in SCM indefinitely.I think since the number of datanodes should fit well in the SCM memory (even for thousands of datanodes), we currently don't see the urgent need to remove the ones in the terminal states. It is also good to know which nodes are decommissioned or dead to troubleshoot issues (instead of them disappearing).
In the future, we can support a CLI with similar mechanism to Recon's "/datanodes/remove" endpoint to call
SCMNodeManager#removeNodewhen the data…