Returns information about a single job in a given workflow.
GET /clusters/:name/workflows/:workflowid/jobs/:jobid
Response
200 OK
{
"href" : "http://your.ambari.server/api/v1/clusters/c1/workflows/mr_201305061943_0001/jobs/job_201305061943_0001",
"Job" : {
"cluster_name" : "c1",
"workflow_id" : "mr_201305061943_0001",
"job_id" : "job_201305061943_0001",
"reduces" : 1,
"status" : "SUCCESS",
"workflow_entity_name" : "X",
"input_bytes" : 2009,
"output_bytes" : 1968,
"conf_path" : "hdfs://your.server:8020/user/ambari-qa/\\.staging/job_201305061943_0001/job\\.xml",
"user_name" : "ambari-qa",
"elapsed_time" : 25734,
"maps" : 1,
"name" : "word count",
"submit_time" : 1367883861310
},
"taskattempts" : [
{
"href" : "http://your.ambari.server/api/v1/clusters/c1/workflows/mr_201305061943_0001/jobs/job_201305061943_0001/taskattempts/attempt_201305061943_0001_m_000000_0",
"Job" : {
"cluster_name" : "c1",
"workflow_id" : "mr_201305061943_0001",
"job_id" : "job_201305061943_0001",
"task_attempt_id" : "attempt_201305061943_0001_m_000000_0"
}
},
...
]
}