Check whether inaccessible mount points exist on the node.
Scenario: There are inaccessible mount points on the node.
If NFS (such as obsfs or SFS) is used by the node and the node is disconnected from the NFS server, the mount point would be inaccessible and all processes that access this mount point are in D state.
- df -h - for dir in `df -h | grep -v "Mounted on" | awk "{print \\$NF}"`;do cd $dir; done && echo "ok"
- ps aux | grep "D "
Workloads running on the node will be rescheduled after a node is restarted. Check whether services will be affected before restarting the node.