Useful commands for hadoop developer
This post combines most frequently used command for spark, emr, yarn and AWS by hadoop developer. Kill Spark job: This command will kill all the running spark jobs.
1 |
ps aux | grep -i spark | awk {'print $2'} | xargs kill -9 |
...