How do I stop an existing job run using dagster cl...
# ask-ai
s
How do I stop an existing job run using dagster cli
s
To stop an existing job run using the Dagster CLI, you can use the
dagster job stop
command followed by the run ID of the job you want to stop. The run ID is a unique identifier for each job run in Dagster. Here's the general syntax for stopping a job run:
Copy code
shell dagster job stop <RUN_ID>
Replace
<RUN_ID>
with the actual run ID of the job you want to stop. Please note that the documentation does not provide a specific example of this command, so you should refer to the Dagster CLI help (
dagster --help
) for the most up-to-date and detailed information on how to use the
stop
command. If you encounter any issues or need further assistance, you can explore the Dagster documentation or seek help from the community.