I have five map reduce that I am running each separately. I want to pipeline them all together. So, output of one job goes to next job. Currently, I wrote shell script to execute them all. Is there a way to write this in java? Please provide an example.
Thanks
You may find JobControl to be the simplest method for chaining these jobs together. For more complex workflows, I’d recommend checking out Oozie.