-
-
Notifications
You must be signed in to change notification settings - Fork 216
feat: add dag step rerun #1030
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: add dag step rerun #1030
Conversation
d3f78a6 to
f259cc2
Compare
f259cc2 to
8db5423
Compare
yottahmd
left a comment
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.
Overall, looks fantastic! I just left nitpick comments.
ui/src/features/dags/components/dag-details/NodeStatusTableRow.tsx
Outdated
Show resolved
Hide resolved
aef89b7 to
1564e9e
Compare
1564e9e to
7cc564c
Compare
Thanks for catching it! 😁 |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1030 +/- ##
==========================================
+ Coverage 67.74% 67.80% +0.05%
==========================================
Files 93 93
Lines 13887 13946 +59
==========================================
+ Hits 9408 9456 +48
- Misses 3677 3685 +8
- Partials 802 805 +3
... and 2 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
🚀 New features to boost your workflow:
|
What does this PR do?
It implements step retry for DAG runs, allowing users to retry execution from any individual step (and its downstreams), not just for the entire DAG failed/canceled nodes.
Why is this needed?
Addresses issue #1015 . Previously, users could only retry entire DAG runs or all failed/canceled steps. There was no way to re-execute a specific step and its downstreams without re-running the whole DAG.
What changed?
--stepflag to the dagu retry command to specify a single step to retry (and its downstreams).RetryDAGStepmethod to the manager, which triggers a retry from a specific step.How was this tested?
Screenshots