In my application, I have a series of 5 Hadoop Jobs which are chained together sequentially using
Job.waitForCompletion(false)
Now, the Hadoop docs clearly states
...the onus on ensuring jobs are complete (success/failure) lies squarely on the clients
Now, if my job client program crashes, how do I ensure that the job client program can resume at the point of crash when it is restarted ? Is there any way to query the JobTracker and get a handle to a specific job and thereafter check its job status ?