op-mainnet op-reth: reduce TransactionLookup chunk_size to 500k #22
Reference in New Issue
Block a user
Delete Branch "issue-593"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Fixed op-mainnet op-reth EL pipeline hang in TransactionLookup stage by reducing chunk_size from default 5M (5_000_000) to 500k (500_000).
Asset:
rpc/op/op/mainnet/reth/reth.toml— new hand-maintained stage config with smaller TransactionLookup chunks.Root Cause
op-reth v2.3.2-rc.2 on rpc-de-32 hung in the TransactionLookup stage at checkpoint 153,190,913 for >2 hours. The 5M-chunk size was too coarse for the dataset, causing timeout-class stalls. Restarting the container re-triggered the stall after ~2 minutes, confirming the fix is config-level.
Verification
./update.shverify: clean; confirmed generated compose mounts./op/op/mainnet/reth/reth.tomlwithchunk_size = 500000.(vibe-node issue #593)