feat(cost): compare streaming summary lifecycles - #334
Merged
Merged
Conversation
zzylol
force-pushed
the
feat/cost-streaming-linear
branch
from
September 3, 2026 16:29
6875361 to
a239227
Compare
zzylol
force-pushed
the
feat/cost-streaming-lifecycle-ranking
branch
2 times, most recently
from
September 3, 2026 16:45
f88029c to
77658a1
Compare
zzylol
force-pushed
the
feat/cost-streaming-linear
branch
from
September 4, 2026 00:01
1a7bc53 to
81fb4e3
Compare
zzylol
force-pushed
the
feat/cost-streaming-lifecycle-ranking
branch
from
September 4, 2026 00:12
089c8c1 to
40db2f1
Compare
zzylol
force-pushed
the
feat/cost-streaming-linear
branch
from
September 4, 2026 02:25
93ff779 to
2e98ec3
Compare
zzylol
force-pushed
the
feat/cost-streaming-lifecycle-ranking
branch
from
September 4, 2026 02:25
40db2f1 to
0219280
Compare
zzylol
force-pushed
the
feat/cost-streaming-linear
branch
from
September 4, 2026 02:49
2e98ec3 to
a090454
Compare
zzylol
force-pushed
the
feat/cost-streaming-lifecycle-ranking
branch
from
September 4, 2026 02:50
0219280 to
d72457a
Compare
zzylol
force-pushed
the
feat/cost-streaming-linear
branch
from
September 4, 2026 03:25
a090454 to
ddf6067
Compare
zzylol
force-pushed
the
feat/cost-streaming-lifecycle-ranking
branch
from
September 4, 2026 03:26
48c15ca to
6e60fab
Compare
zzylol
force-pushed
the
feat/cost-streaming-linear
branch
from
September 4, 2026 04:01
ddf6067 to
e9cb271
Compare
zzylol
force-pushed
the
feat/cost-streaming-lifecycle-ranking
branch
from
September 4, 2026 04:01
6e60fab to
b4c5480
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.
Why
A streaming resource estimate is not enough to choose whether one summary state should be ephemeral, prepared, shared, or continuously maintained. Those alternatives have different legality constraints and different build, update, retention, read, and retirement schedules.
What
Connect analytical streaming resource estimates to the existing summary-maintenance lifecycle alternatives without defining a second lifecycle domain model.
How
Before this PR
Streaming resource dimensions could be estimated, but lifecycle alternatives were not compared with those estimates.
After this PR
Each legal lifecycle alternative for an individual summary state can be compared over one horizon using all evidence required by that lifecycle estimate. This PR does not yet claim that a nested
SummaryExprDAG is complete; #335 adds recursive whole-DAG accounting and shared-node deduplication.Verification
cargo test --workspacecargo clippy --workspace --all-targets --all-features -- -D warningscargo fmt --all -- --checkStack
Depends on #331. #335 adds complete
SummaryExprDAG estimation.