Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(dagster-client): support forced run termination #28339

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

hbruch
Copy link

@hbruch hbruch commented Mar 9, 2025

Summary & Motivation

This PR adds the option to force terminate runs via DagsterGraphQLClient. terminate_run and terminate_runs now accept an additional boolean parameter force. If true, terminatePolicy is set to MARK_AS_CANCELED_IMMEDIATELY . Motivation is described in #28182

Fixes #28338

Alternative implementation considered

I decided in favor of a boolean force parameter. Another option could be to instead choose terminatePolicy as string param.

How I Tested These Changes

  • Added two testcases
  • tested via python -m pytest python_modules/dagster-graphql/dagster_graphql_tests/client_tests

Changelog

  • [dagster-graphql] The Python DagsterGraphQLClient client.terminate_run(run_id) and client.terminate_run(run_ids) now support an optional boolean force parameter. Default is False.

Copy link
Contributor

@dpeng817 dpeng817 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for putting this up! I think the change generally makes sense, but I'd prefer being explicit about the API at the top level.

"""Terminates a pipeline run. This method it is useful when you would like to stop a pipeline run
based on a external event.

Args:
run_id (str): The run id of the pipeline run to terminate
force (bool, optional): if false, run will be terminated using terminatePolicy SAFE_TERMINATE.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hm; not a huge fan of hiding terminatepolicy behind a flag like this. What if we down the road, add an additional terminatepolicy value? Seems like it would be hard to extend support here. How about instead we just take terminatePolicy directly?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Feature Request: DagsterGraphQLClient.terminate_runs should support force option
2 participants