-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
storage endpoint for deleting backfills #25165
Conversation
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. Join @jamiedemaria and the rest of your teammates on Graphite |
c3f0015
to
13547e1
Compare
@@ -1023,6 +1023,14 @@ def update_backfill(self, partition_backfill: PartitionBackfill) -> None: | |||
) | |||
) | |||
|
|||
def delete_backfill(self, backfill_id: str) -> None: | |||
check.str_param(backfill_id, "backfill_id") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
look at putting this into a single transaction
b5ac4d7
to
2b17776
Compare
13547e1
to
79bff43
Compare
2b17776
to
00b56ce
Compare
79bff43
to
1f64831
Compare
00b56ce
to
f893974
Compare
1f64831
to
dbd2468
Compare
Call out from @gibsondan on a separate issue that's worth considering here:
|
popping this back in draft to get out of queues until we figure out a deleting runs strategy #25167 (review) |
dbd2468
to
a0ba58c
Compare
Deploy preview for dagit-core-storybook ready! ✅ Preview Built with commit a0ba58c. |
Deploy preview for dagit-storybook ready! ✅ Preview Built with commit a0ba58c. |
Deploy preview for dagster-docs ready! Preview available at https://dagster-docs-mojehito1-elementl.vercel.app Direct link to changed pages:
|
Deploy preview for dagster-university ready! ✅ Preview Built with commit a0ba58c. |
Deploy preview for dagster-docs-beta ready! Preview available at https://dagster-docs-beta-fpyqo0ald-elementl.vercel.app Direct link to changed pages: |
5f35ff8
to
0d4ead6
Compare
3cd9f4a
to
58456f5
Compare
0d4ead6
to
b69d197
Compare
Summary & Motivation
adds storage endpoint for deleting backfills. This will NOT delete any runs that the backfill launched, just deletes the row for the backfill from the BulkActionsTable
associated internal pr https://github.com/dagster-io/internal/pull/12090
How I Tested These Changes
new unit tests