feat: add bounded cross-language pipelines - #15
Draft
reacher-z wants to merge 3 commits into
Draft
Conversation
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.
What
Why
The previous runtime exposed parallel fan-out but did not provide the streaming, per-item stage composition required by the Graph Engineering plan. That left independent items synchronized behind barriers and left no shared contract for failure handling, ordering, or cancellation.
The implementation review also found three cross-cutting correctness risks: explicit
nullvalues could fall through to defaults in TypeScript, Python policy extensions could be consumed by Pydantic instead of preserved in the canonical hash, and an overflowing Python stage iterator was not guaranteed to close. This stack fixes those root causes rather than masking individual fixtures.Impact
Validation
git diff --checkScope
This is a stacked draft targeting
feat/durable-recovery. It deliberately excludes the active Builder/YAML and durable-redaction implementation lanes; those will land as independently reviewed milestones. No release or merge is performed by this pull request.