kill-secondary-name-node 888 B

1234567891011121314151617181920212223242526272829
  1. #!/bin/sh
  2. # HDP configures the SecondaryNameNode JVM process to call this script on
  3. # OutOfMemoryError. This will find and kill the SecondaryNameNode process. It's
  4. # potentially dangerous to keep running the SecondaryNameNode after an
  5. # OutOfMemoryError. There is a risk that a file system change could be applied
  6. # to the in-memory metadata but not made persistent to the edit log. HDFS
  7. # contains legacy code that catches OutOfMemoryError, so we need to use this
  8. # script to kill it externally.
  9. SNNPID=$("$JAVA_HOME"/bin/jps | grep -E '^[0-9]+[ ]+SecondaryNameNode$' | awk '{print $1}')
  10. if [ $? -gt 0 ]; then
  11. echo "ERROR: Command failed while looking for SecondaryNameNode PID."
  12. exit 1
  13. fi
  14. if [ -z "$SNNPID" ];
  15. then
  16. echo "ERROR: Could not find a SecondaryNameNode PID."
  17. exit 1
  18. fi
  19. kill -9 "$SNNPID"
  20. if [ $? -gt 0 ]; then
  21. echo "ERROR: Kill command failed."
  22. exit 1
  23. fi