thomaslee
thomaslee

Reputation: 407

Meaning of hadoop job status

I run the command hadoop job -list all to show all the submitted jobs, and it shows state meaning as: Running : 1 Succeded : 2 Failed : 3 Prep : 4.

But now I have a job whose status is 5. The list command output like this: job_201209101415_429766 5 1358332807055 user NORMAL NA

Anybody konws what it means?

Thank you!

Upvotes: 1

Views: 1228

Answers (1)

Arnkrishn
Arnkrishn

Reputation: 30424

Job status 5 implies Killed. Please check this web link

http://hadoop.apache.org/docs/r0.20.2/api/constant-values.html#org.apache.hadoop.mapred.JobStatus.KILLED

Upvotes: 1

Related Questions