[EXPERIMENTAL] feat(dag): migrate DAG support to extension SPI - #611
Draft
zhongkechen wants to merge 3 commits into
Draft
[EXPERIMENTAL] feat(dag): migrate DAG support to extension SPI#611zhongkechen wants to merge 3 commits into
zhongkechen wants to merge 3 commits into
Conversation
zhongkechen
requested a deployment
to
ai-pr-review-runtime
August 10, 2026 17:29 — with
GitHub Actions
Waiting
zhongkechen
requested a deployment
to
ai-pr-review-runtime
August 10, 2026 17:29 — with
GitHub Actions
Waiting
2 tasks
zhongkechen
force-pushed
the
codex/experimental-dag-extension-spi
branch
2 times, most recently
from
August 10, 2026 20:05
ecf0c30 to
e25ea9c
Compare
zhongkechen
force-pushed
the
codex/experimental-dag-extension-spi
branch
2 times, most recently
from
August 10, 2026 23:59
25cf931 to
b08588f
Compare
zhongkechen
force-pushed
the
codex/experimental-dag-extension-spi
branch
from
August 11, 2026 05:19
6a8bbc1 to
818b256
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
Warning
Experimental stacked PR. This work depends on draft PR #607 and is not intended for production use. The DAG API, checkpoint shape, and implementation may change before merge or release.
Issue Link, if available
Stacked on #607.
Description
Migrates the experimental DAG implementation to the extension operation SPI introduced by #607.
DurableDagOperation.dag(...)anddagAsync(...)entry points following the newDurable*Operationfacade style.DurableContext.ExtensionContextandExtensionOperation.Durable*Operationclasses and their implementation tests unchanged from the stacked base.Demo/Screenshots
Not applicable. This is an SDK API and execution implementation change.
Checklist
Testing
Unit Tests
Yes. Added focused coverage for
DurableDagOperationand the DAG-internal reserved-context adapter.Integration Tests
Yes. DAG integration and conformance tests were updated for the static operation facade. The complete Maven reactor passes.
Commands run:
Cloud example tests remain disabled by default.
Examples
Existing DAG examples were migrated to
DurableDagOperation; no additional example was required.