Hi I had a similar requirement One way to do this is
after sending the first job after
Job job1 = new Job( getConf() ); job.waitForCompletion( true );
and then check the status with
if(job.isSuccessful()){ //start another job with different Mapper. //change config Job job2 = new Job( getConf() ); }
source share