Skip to content

Fix waterfill registration in fetch and chain state flows - #1410

Closed
DZakh wants to merge 29 commits into
mainfrom
codex/fix-fetch-waterfill-registration
Closed

Fix waterfill registration in fetch and chain state flows#1410
DZakh wants to merge 29 commits into
mainfrom
codex/fix-fetch-waterfill-registration

Conversation

@DZakh

@DZakh DZakh commented Jul 13, 2026

Copy link
Copy Markdown
Member

Summary

  • Fix waterfill registration across fetch, chain, and cross-chain state handling
  • Update source management and state transitions to keep registration consistent during fetch processing
  • Refresh codegen and library tests to cover the corrected behavior

Testing

  • Updated and extended unit and scenario tests for chain state, fetch state, source manager, rollback, and codegen flows
  • Not run (not requested)

Summary by CodeRabbit

  • New Features

    • Improved multichain fetching with density-aware scheduling, adaptive query sizing, and better progress alignment.
    • Increased default buffering capacity for more efficient event processing.
    • Added filtering to prevent rejected events from triggering downstream handlers.
  • Bug Fixes

    • Improved rollback and reorganization handling.
    • Fixed query budgeting and chunk scheduling for more reliable synchronization.
    • Corrected dynamic address filtering behavior during simulations.

claude and others added 29 commits July 8, 2026 10:10
Replace the per-partition/per-query greedy admission scheduler with a
per-chain waterfall: CrossChainState.checkAndFetch visits chains
furthest-behind first, handing each its remaining share of the shared
buffer budget. ChainState turns that budget into a soft target block
using a new chain-wide event density (seeded from cumulative progress,
smoothed with an EMA per batch), and FetchState.getNextQuery sizes
known-density partitions against that target block while splitting
whatever budget is left across partitions with unknown density.

This concentrates fetch effort on the bottleneck chain per tick instead
of scattering a shared item budget across every chain's full candidate
query set.
…uery

The unknown-density probe split counted partitions with nothing left to
query (already at their endBlock/mergeBlock/knownHeight ceiling), inflating
the divisor and under-sizing eligible partitions' queries. Add a
hasEligibleRange check mirroring pushQueriesForRange's own gate to exclude
them.

Splitting partitions into known/unknown passes also broke the original
idsInAscOrder query ordering that several tests assert on positionally;
restore it by sorting the final query list back into partition order.

Update FetchState_test.res fixtures accordingly, including a case that
needed distinct expected values across three eligibility scenarios that
previously shared one fixture.
Query creation now splits the chain's range budget evenly across
in-range partitions each round, rather than sizing every known-density
partition against the full chain target while unknown-density
partitions fought over the leftover. A partition already holding more
budget than its even share (e.g. from an earlier tick's in-flight
query) sits out a round so its share flows to the others, and the
split is recomputed each round against the shrinking set of partitions
still needing more.

Also:
- Rename estResponseSize -> itemsTarget throughout, since the field is
  now both the server-side maxNumLogs-style cap and the budget
  reservation/consumption unit, not just an estimate.
- Bucket queries by partition index as they're created instead of
  sorting the whole result at the end of every tick.
- Only trust a partition's density once it has two responses
  (matching the existing chunking-heuristic gate); a single response
  is too noisy to size the next query from.
- Smooth the chain-wide density EMA as (old + new) / 2 instead of
  (2*old + new) / 3.
walk, tighten round bound, add coverage

- getNextQuery walked every partition's mutPendingQueries twice (once
  for chainReserved, again to seed reservedByPartition per partition).
  Merge into a single pass.
- Replace the unproven roundsRef < 1000 safety cap with a provable
  bound: every active partition either finishes or advances its chunk
  count each round, capped at maxPendingChunksPerPartition, and all
  active partitions progress in lockstep (not one at a time), so no
  partition can outlive maxPendingChunksPerPartition + 1 rounds.
- Add ChainState_test.res covering the chain density seed (from
  resumed progress) and the EMA blend.
- Add a CrossChainState_test.res case pinning the waterfall's actual
  cross-chain budget flow: a chain whose real range caps its
  consumption below its share leaves the remainder for the next chain.
Each round computed ipb = rangeBudget/n once, but then capped every
partition's actual budget at min(rangeBudget, ipb - reserved) and
decremented rangeBudget after each partition — so a partition
processed earlier in the same round (e.g. one forced to overshoot its
share via the "at least one full chunk" rule) shrank the pool for
whoever came after it. Same reservations, different iteration order,
different split (and total consumption could even exceed rangeBudget
depending on order).

Fix: every partition's share for a round is ipb - reserved, fixed for
the whole round; rangeBudget is only re-derived once, from the round's
actual total consumption, after every partition has had its fixed
shot. A partition can still overshoot its own share, but it can no
longer steal from another partition in the same round.

Also fixes a SourceManager_test.res assertion that was pinned to the
old order-dependent rounding artifact (three identical partitions
splitting a budget three ways used to get 16667/16667/16666; they now
all get 16667, as they should since they're indistinguishable).
…exer-query-control-kebggn

# Conflicts:
#	packages/envio/src/ChainState.res
#	packages/envio/src/ChainState.resi
…1394)

The per-partition round budget was `ipb - reserved`, where `ipb` was an
even share of only the *remaining fresh* budget (`rangeBudget / n`) while
`reserved` accumulated each partition's full footprint (existing in-flight
+ gap-fill + this call's prior-round emissions). Those two are on different
scales, so once a chunked partition's running reservation passed a later
round's fresh share, `ipb - reserved` went negative and the partition was
dropped — leaving budget unspent even though it still had range to fetch
and a sibling had just freed its share by filling early.

Compute the round's level as a real water-fill line — (remaining fresh
budget + the still-not-filled partitions' current footprint) / count —
and top each partition up toward it. A partition already above the line
gets nothing (its head start is its whole share); the rest absorb the
leftover, so the budget is fully used and per-partition totals stay even.
The loop now runs until either the not-filled set drains or the whole
fresh budget is reserved, dropping the redundant round cap: a partition
survives a round only by advancing chunksUsedThisCall (bounded by
maxPendingChunksPerPartition) or consuming budget, so it terminates on
its own.

Add a regression test: a range-capped partition and a deep partition
splitting a 900-item budget — the deep one now absorbs the capped one's
freed share (4 chunks / 720 items) instead of stopping at 2.


Claude-Session: https://claude.ai/code/session_0134TTgxQ3ci5mWUnt928yr9

Co-authored-by: Claude <noreply@anthropic.com>
An unknown-density partition's open-ended probe was sized to its full even
share of the chain's budget with no ceiling. When such a chain leads the
furthest-behind waterfall, that share is the entire cross-chain buffer pool,
so its single probe consumed 100% of the remaining budget and starved any
sibling chain needing its own first probe in the same tick (e.g. multiple
chains entering the reorg threshold together).

Cap the probe at maxItemsTarget (10_000), restoring the old bounded-default
ceiling. The leftover budget flows to the next chain via checkAndFetch's
remaining subtraction, exactly as before.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01GBSAcMXTNy2K8i16bkJELo
…control-kebggn' into claude/multichain-indexer-query-control-kebggn
The resume-seed path only sets chainDensity once numEventsProcessed > 0, but
the per-batch EMA update seeded Some(0.) after any progress-only batch (blocks
advanced, no events), contradicting that documented behavior and making the
first real batch blend against 0 instead of seeding from its own density.

Guard the EMA seed on the batch having events, matching the resume path. The
Some(oldDensity) blend is unchanged.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01GBSAcMXTNy2K8i16bkJELo
* Enforce reservation == server cap and stop chunking without trusted density

- Floor itemsTarget at 1 at creation (densityItemsTarget, water-fill chunk
  loop, probe) so a query's budget reservation always equals the
  maxNumLogs-style cap sent to the server; drop SourceManager's 2000-item
  fallback that let density-0 queries return up to 2000 unaccounted items.
- Emit density-priced chunks only for a trusted positive density; density-0
  and unknown-density partitions get a single open-ended probe sized at the
  even split of the tick's fresh budget (maxItemsTarget cap removed). This
  removes the chunkCost=0 path that flooded 10 free hard-bounded chunks per
  partition and froze the 1.8x range growth.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01McpcXkR3pPWfEcq4mCj9Sw

* Extract getTrustedDensity helper for water-fill chunk sizing

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01McpcXkR3pPWfEcq4mCj9Sw

* Make query itemsTarget an int and trim redundant comments

The ceil-to-int conversion now happens once at query creation, so the
reservation, the budget accounting, and the server cap all use the same
integer value; SourceManager passes it through untouched.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01McpcXkR3pPWfEcq4mCj9Sw

* Price gap-fill by trusted density with available-density fallback

Gap queries now use getTrustedDensity: chunks only on a trusted positive
density (same rule as the water-fill); a trusted-zero density prices the
whole gap as one open query, and a partition with no density signal prices
it by available density — its equal-divide budget spread over the remaining
range this tick — so a small gap reserves proportionally little instead of
a noisy one-sample estimate or a NaN from dividing by a zero range.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01McpcXkR3pPWfEcq4mCj9Sw

* Cap follower chains at the leader's target progress in the waterfall

Chains beyond the most-behind one in the budget waterfall are now capped
at that leader's target progress, mapped onto their own block range
(ChainState.progressAtBlock/blockAtProgress), so no chain runs further
ahead than the chain the shared buffer pool is prioritizing. A chain
visited after the pool is exhausted simply sits out the round — its
reservations release as responses land, so the next tick redistributes.

FetchState's dynamic-contract partition merge now inherits the sum of
its parents' trusted densities (weighted onto the merged partition's
min query range) instead of resetting to 0, so a merge with density
history doesn't regress to an unpriced probe.

Update E2E/rollback tests to the now-serialized cross-chain query
dispatch (most-behind chain queries first; siblings follow once its
response releases budget) and to give density-dependent chunking tests
a nonzero item count to trust.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01McpcXkR3pPWfEcq4mCj9Sw

* Cap a clamped chain's fresh budget at its density-priced range cost

When a chain's target block is clamped (head, endBlock, or the
cross-chain alignment cap), a known-density chain's fresh budget is now
capped at density x clamped range (in-flight reservations stay on top so
they don't crowd out new partitions). The unused remainder stays in the
waterfall's pool and flows to the next chain in the same tick, instead
of being held by an oversized probe until the response lands.

This also removes the drain loop the infinite-reorg-loop test needed:
the non-reorg chain's post-rollback refetch now reserves only its real
range cost, so the reorg chain gets budget immediately.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01McpcXkR3pPWfEcq4mCj9Sw

* Give head-bound queries 2x density headroom in the budget cap

A query clamped at the head sized exactly at density x range truncates at
the server cap whenever the range is slightly denser than the estimate,
forcing an immediate catch-up query for the last few blocks. Double the
range cost for head-bound targets so one query usually suffices; the
extra reservation releases as soon as the response lands.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01McpcXkR3pPWfEcq4mCj9Sw

* Refine chain budget caps: endBlock ceiling, 5k probe cap, 3x head headroom

- targetBlock now clamps at endBlock (when below the head) via a shared
  fetchCeiling helper, so endBlock'd chains stop sizing and aligning
  against range they'll never fetch.
- A chain with no positive density signal caps its fresh budget at 5k,
  so one unknown chain measuring its first responses no longer holds the
  whole cross-chain pool.
- Head/endBlock-bound queries get 3x (was 2x) density headroom against
  truncating at the server cap and needing a catch-up query.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01McpcXkR3pPWfEcq4mCj9Sw

* Fix clippy::useless_borrows_in_formatting across cli package

Remove redundant & references in format!/anyhow! arguments flagged by
the CI-pinned clippy (rust 1.97). Pre-existing on the base branch,
unrelated to the SourceManager/waterfall changes in this PR — fixed
here since it was blocking cargo-test from going green.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01McpcXkR3pPWfEcq4mCj9Sw

* Fix clippy::to_string_in_format_args exposed by the previous fix

Removing the redundant & in anyhow!'s self.id.to_string() surfaced a
second lint on the same line: ChainId (u64) already implements Display,
so .to_string() inside the format arg is itself redundant.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01McpcXkR3pPWfEcq4mCj9Sw

---------

Co-authored-by: Claude <noreply@anthropic.com>
main's cargo-test job started failing clippy (-D warnings) on pre-existing
code after a stable-toolchain drift (no rust-toolchain pin), unrelated to
this PR's scheduling changes but inherited via the origin/main merge.
Removed the redundant `&` in format!/anyhow! args across 6 files, and
dropped a now-also-flagged explicit .to_string() on a Display type in
validation.rs.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01GBSAcMXTNy2K8i16bkJELo
…control-kebggn' into claude/multichain-indexer-query-control-kebggn

# Conflicts:
#	packages/cli/src/hbs_templating/hbs_dir_generator.rs
- Replace the per-round mean line in FetchState.getNextQuery with an exact
  water level (sum of top-ups equals the poured budget), so uneven in-flight
  reservations can no longer inflate other partitions' allotments past the
  fresh budget
- Size unknown-density probes by their water-fill allotment instead of a
  fixed pre-round even split, so leftover budget reaches the partitions
  without reservations instead of being stranded
- Gate the 3x head headroom on the chain having caught up once (isReady)
- Blend chain density weighted by the batch's block span instead of a flat
  (old + new) / 2
- Clamp progressAtBlock at 0 for the initial -1 fetch frontier
- Skip chains with no known height in the cross-chain waterfall so they wait
  for a block instead of setting a degenerate alignment line

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01KvUhc8DhbxjGPEtHoDNThJ
Small batches (a few blocks) should barely nudge the chain density estimate,
while anything spanning 100+ blocks is a trustworthy fresh sample.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01KvUhc8DhbxjGPEtHoDNThJ
…control-kebggn' into claude/multichain-indexer-query-control-kebggn
* Add chunk itemsTarget headroom and budget-driven chunk emission

Chunk reservations now carry a headroom multiplier over the density
estimate (1.5x during backfill, 3x in realtime, chosen in
CrossChainState.checkAndFetch and threaded down to
FetchState.getNextQuery), so a denser-than-expected range doesn't
truncate at the server cap. Open-ended probes stay allotment-sized.

The emit loop replaces the precomputed chunkCost/affordable estimate
with per-chunk actual itemsTarget accounting: the first chunk always
emits full-size, subsequent chunks only while they fit the budget, and
the min-one-chunk force applies once per call instead of once per
water-fill round.

Cap-hit truncations (partial response with itemsCount >= itemsTarget)
no longer update the chunk range history — they reflect our own
reservation, not server capacity. Sub-cap partials still do.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01KpFcYPn8UbQfaEfW6gjant

* Restore min-one-chunk per water-fill round

A leftover re-pour forces a full chunk again, so the budget never
strands on chunk quantization; the overshoot stays bounded at one
chunk per partition per round and self-corrects via the reported
reservations. Drops the per-call emittedThisCall bookkeeping.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01KpFcYPn8UbQfaEfW6gjant

---------

Co-authored-by: Claude <noreply@anthropic.com>
* Contain queries to the chain target block and rework cold-start sizing

- No chunk or gap-fill query starts past chainTargetBlock; emitted chunks
  keep their full span, with endBlock/mergeBlock staying the hard bounds.
  Skipped gaps regenerate from the pending-walk and fill once the target
  reaches them.
- A chain with no density signal targets frontier + coldTargetRange
  (init 20k), doubling whenever it goes idle without producing a signal,
  capped at the fetch ceiling. The cross-chain waterfall clamps a cold
  chain to min(5k, targetBufferSize), replacing the internal probe clamp,
  and a cold leader no longer sets the alignment line.
- Query sizing uses effectiveDensity = max(processing EMA, ready-buffer
  density), so a dense buffer overrides a stale-low EMA and ready items
  alone take a chain out of cold mode.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_018CiEziFbVe1P3Y6iuyfT5Z

* Replace cold-window doubling with a fixed 20k range

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_018CiEziFbVe1P3Y6iuyfT5Z

* Span ready-buffer density from the processing block number

The buffer is consumed at batch creation while committed progress only
catches up after the batch commits, so mid-batch the density's numerator
shrank without the denominator following. Track the in-flight batch's
progress as processingBlockNumber (advanced in advanceAfterBatch, caught
up in applyBatchProgress, rewound on rollback) and use it as the span's
lower boundary.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_018CiEziFbVe1P3Y6iuyfT5Z

* Warm the chain with seed events in the partition-merge E2E test

A chain with no density signal now targets frontier + 20k, which gates the
far DC partitions this test fetches in parallel. Seed 100 events in the
registering response so the chain has a density signal and enough range
budget for DC2's full 10-chunk pipeline; cold gating itself is covered by
unit tests.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_018CiEziFbVe1P3Y6iuyfT5Z

---------

Co-authored-by: Claude <noreply@anthropic.com>
* Reserve budget at honest itemsEst instead of headroomed itemsTarget

Queries now carry both itemsTarget (server-side cap, sized with the chunk
headroom multiplier) and itemsEst (raw density estimate). Reservations,
pendingBudget, and water-fill footprints use itemsEst, so headroom no longer
throttles pipeline depth. The extra 3x budget cap for caught-up chains is
dropped — truncation safety lives solely in the itemsTarget cap, keeping
realtime headroom at 3x instead of compounding to 9x. Aligned chains may now
run 5% past the leader's line to stop clamp flapping when progress tracks
closely.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01QyDQ2imktXA4jL8PtWYSmd

* Raise default target buffer to 100k and chunk pipeline cap to 12

Measured on the erc20 template against real HyperSync data: at 50k the dense
chain's buffer drained to zero in a quarter of samples (processing starved on
fetching), while at 100k it almost never does and throughput matches the
processing ceiling. Beyond 100k there's no further gain — 300k only grows the
resident buffer. The chunk cap rarely binds at 12 but gives the pipeline
headroom at the larger budget.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01QyDQ2imktXA4jL8PtWYSmd

---------

Co-authored-by: Claude <noreply@anthropic.com>
@coderabbitai

coderabbitai Bot commented Jul 13, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Caution

Review failed

The pull request is closed.

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: a3259d9b-dc54-433b-a9bd-2750e5dcc8da

📥 Commits

Reviewing files that changed from the base of the PR and between 7239d77 and 0c7a90a.

📒 Files selected for processing (18)
  • packages/envio/src/ChainFetching.res
  • packages/envio/src/ChainState.res
  • packages/envio/src/ChainState.resi
  • packages/envio/src/CrossChainState.res
  • packages/envio/src/FetchState.res
  • packages/envio/src/sources/SourceManager.res
  • scenarios/test_codegen/test/ClientAddressFilter_test.res
  • scenarios/test_codegen/test/E2E_test.res
  • scenarios/test_codegen/test/EventBlockFilter_test.res
  • scenarios/test_codegen/test/IndexerState_test.res
  • scenarios/test_codegen/test/SimulateDynamicAddress_test.res
  • scenarios/test_codegen/test/helpers/MockIndexer.res
  • scenarios/test_codegen/test/lib_tests/ChainState_test.res
  • scenarios/test_codegen/test/lib_tests/CrossChainState_test.res
  • scenarios/test_codegen/test/lib_tests/FetchState_onBlock_test.res
  • scenarios/test_codegen/test/lib_tests/FetchState_test.res
  • scenarios/test_codegen/test/lib_tests/SourceManager_test.res
  • scenarios/test_codegen/test/rollback/Rollback_test.res

📝 Walkthrough

Walkthrough

This change replaces response-size estimation with density-aware item budgeting, adds chain density and processing-frontier tracking, rewrites cross-chain waterfall scheduling, moves query-item filtering before side effects, and updates unit, integration, E2E, and rollback tests.

Changes

Fetch scheduling and density

Layer / File(s) Summary
Chain density and frontier state
packages/envio/src/ChainState.res, packages/envio/src/ChainState.resi
Adds processing-frontier and chain-density state, density mapping helpers, filtered query items, and density-aware query construction.
Partition query sizing
packages/envio/src/FetchState.res
Replaces response-size estimates with itemsTarget/itemsEst, and adds gap-fill, water-fill, density, chunking, and deterministic partition scheduling logic.
Cross-chain budget allocation
packages/envio/src/CrossChainState.res
Introduces priority-ordered waterfall budgeting with cold-chain handling, realtime multipliers, alignment limits, and item-estimate reservations.
Filtering and source requests
packages/envio/src/ChainFetching.res, packages/envio/src/FetchState.res, packages/envio/src/sources/SourceManager.res
Filters accepted query items before contract-registration handling and forwards explicit item targets to source requests.
Validation updates
scenarios/test_codegen/test/**
Updates query-shape, filtering, density, scheduling, chunking, merge, and rollback tests for the new control flow.

Estimated code review effort: 5 (Critical) | ~120 minutes

Possibly related PRs


Comment @coderabbitai help to get the list of available commands.

@DZakh DZakh closed this Jul 13, 2026

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 0c7a90aaf4

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

// Apply temporal/address predicates immediately before routing accepted
// items to contract-register handlers. A rejected event must neither
// enter the buffer nor create addresses or partitions as a side effect.
let newItems = chainState->ChainState.filterQueryItems(~items=parsedQueueItems)

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Register dynamic addresses before filtering the page

When a response page contains a contractRegister event and another event in the same fetched page whose clientAddressFilter references the newly registered address, this filters the whole page against the pre-registration indexingAddresses. The registering event can add the address only afterward, but the dependent wildcard/param-address event has already been removed, so same-page dynamic-contract events are silently skipped even when their block is at or after the registration block.

Useful? React with 👍 / 👎.

prevQueryRange: minRange,
prevPrevQueryRange: minRange,
prevRangeSize: 0,
prevRangeSize: (inheritedDensity *. minRange->Int.toFloat)->Math.ceil->Float.toInt,

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Avoid copying aggregate density to every split partition

When two below-frontier dynamic partitions merge but their combined address list exceeds maxAddrInPartition, the split code below clones continuingBase into both child partitions. This new prevRangeSize represents the sum of both parents' densities, so each split child receives the full aggregate density rather than its share; factories that cross the address cap will over-reserve the fetch budget for every child partition and can throttle other partitions/chains unnecessarily.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants