queue kill
Kill actively running DVC experiment tasks (see dvc queue start).
Synopsis
dvc queue kill [-f] [task ...]Description
Gracefully interrupt running experiment queue tasks (equivalent to Ctrl-C).
Specify one or more task IDs (as shown by dvc queue status) to kill specific
tasks, or use -f to kill all running tasks.
Note that killed experiments will be considered failed runs and will not be re-added to the queue for future execution.
This command does not stop the dvc queue start worker(s). After the specified
task has been killed, a worker will move on to process the next experiment task
in the queue.
To kill all running experiments and also stop processing the queue, use
dvc queue stop --kill.