Reputation: 509
While testing the jobs, I submitted multiple jobs by mistake which are running at regular intervals now. I should have tested with -dryrun option. I want to remove all those scheduled jobs from the queue so that they don't run on the next scheduled (next materialization). I tried killing the job using below command. Still it show as Succeeded in the oozie console. Am I missing something here? Please help.
oozie job -kill <-C_id>
Upvotes: 1
Views: 2502
Reputation: 4732
Following is what I use to remove a coordinator job.
oozie job -oozie http://<OOZIE_URL>:11000/oozie -kill <-C_id>
Upvotes: 1