I need to get the list of job names that currently running. But "hadoop -job list" give me list of jobIDs.
Is there a way to get names of the running jobs ? Or is there a way to get the job names from jobIDs ?
Regards, Karthik
|
I need to get the list of job names that currently running. But "hadoop -job list" give me list of jobIDs. Is there a way to get names of the running jobs ? Or is there a way to get the job names from jobIDs ? Regards, Karthik |
|||
|
|
|
I've had to do this a number of times so I came up with the following command line that you can throw in a script somewhere and reuse. It prints the jobid followed by the job name.
|
|||
|
|
|
If you do
The I didn't find a way to access the job name from the command line. Not to say there isn't... but not found by me. :) The tracking URL and xml file are probably your best options for getting the job name. |
|||
|
|