The following code snippet shows how to list and kill Hadoop jobs including (MapReduce and YARN jobs).
Remember to replace $jobId and $applicationId to your own job/application ID. You can also use the following command but it is deprecated: hadoop job -list hadoop job -kill
Code snippet
# MapReduce jobs # Replace %jobId with your own job ID mapred job -list mapred job -kill $jobId # YARN jobs # Replace $applicationId with your own application ID yarn application -list yarn application -kill $applicationId