Ability to cancel job from ScioResult
See original GitHub issueIIRC ScioResult#waitUntilDone
only throws an exception when the timeout is up but won’t cancel the job. Need to pass it to the underlying job (might be runner specific?).
Issue Analytics
- State:
- Created 6 years ago
- Comments:7 (7 by maintainers)
Top Results From Across the Web
Scheduled Jobs
To view a list of your currently scheduled jobs click the Scheduled Jobs ... If you do have the ability to cancel a...
Read more >Cancelling a Batch Job with the CANCEL Command - IBM
To halt processing of batch jobs that you submitted from your terminal, use the CANCEL command. If you cancel the job successfully, the...
Read more >Canceling a Print Job Using the Job Status/Cancel Key - Canon
Press the [ ] ( Job Status/Cancel) key. Select a job you want to cancel using [ ] and [ ], and then...
Read more >17099: GruntWorx - Cancelling a Job - Drake Software KB
Go to the Job Status tab. Highlight the job to be canceled. Right-click and select Cancel Job.
Read more >cancel-job — AWS CLI 1.27.28 Command Reference
Use caution and ensure that each device executing a job which is canceled is able to recover to a valid state. --cli-input-json (string)...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@regadas yep!! it looks like it’s as simple as calling
internal.cancel()
(at least, this worked with the batch Dataflow runner…). I’ll put up a PR after I get things cleaned up/tested.PR #1058