Reputation: 5356
Can I configure two sqoop command so that they are dependent on each other? Like if the first sqoop job is successful, second gets triggered. If first fails, second should not run
Upvotes: 0
Views: 115
Reputation: 2546
You can use oozie for this. Create an oozie workflow. Execute the second action only if the first action succeeds.
Upvotes: 2