When submitting task graphs using fire_and_forget, is it possible to later (in a new process/client) cancel those tasks (e.g. by key name)? And will that also cancel all dependent tasks, or are these also 'fire_and_forget'-like?
dask-distributed: how to cancel tasks submitted with fire_and_forget?
1k Views Asked by Vincent Schut At
1
There are 1 best solutions below
Related Questions in DASK
- What is the most efficient way to utilize dask multiprocessing scheduler if data flow between tasks is big?
- Dask: outer join read from multiple csv files
- How to terminate workers started by dask multiprocessing scheduler?
- Killed/MemoryError when creating a large dask.dataframe from delayed collection
- Can a dask dataframe with a unordered index cause silent errors?
- Converting a correlateion coefficient function from NumPy to Dask
- Add custom links to www-interface of dask distributed scheduler
- dask and parallel hdf5 writing
- Read Directory of Timeseries CSV data efficiently with Dask DataFrame and Pandas
- How do I persist dask-DAGs on distributed cluster accross multiple calls and keep intermediate results?
- Default pip installation of Dask gives "ImportError: No module named toolz"
- Python Datashader to plot large 2D arrays of points
- How to efficiently submit tasks with large arguments in Dask distributed?
- How to set up logging on dask distributed workers?
- How to zero out all entries of a dask array less than the top k
Related Questions in DASK-DISTRIBUTED
- Dask worker resources for distributed workers
- Defining dask worker resources for a dataframe operation
- Retrieve, view results, and cancel futures using client
- Pickle error when submitting task using dask
- Massively parallel search operation with Dask, Distributed
- Timeout error when trying to connect dask.distributed client on slurm-managed cluster
- Safe & performant way to modify dask dataframe
- using dask distributed computing via jupyter notebook
- How to enable proper work stealing in dask.distributed when using task restrictions / worker resources?
- Docker swarm node unable to detect service from another host in swarm
- How to close python instance in dask debug
- Is there a dask api to get current number of tasks in dask cluster
- dask-distributed: how to cancel tasks submitted with fire_and_forget?
- Dask: How to use delayed functions with worker resources?
- Nested processes with Dask and Machine learning models
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Yes, you can create a new future with the keyname
Forcing cancellation even in the face of multiple clients seems reasonable (
fire-and-forgetis considered its own client). Implemented here: https://github.com/dask/distributed/pull/1408 . In version > 1.18.3 you will be able to use theforce=TruekeywordThis will cancel the future, even if other clients desire it.