Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OP-Reth: Base node crashes, v1.0.8, --engine.experimental #11471

Closed
1 task done
DaveWK opened this issue Oct 3, 2024 · 40 comments · Fixed by #12193
Closed
1 task done

OP-Reth: Base node crashes, v1.0.8, --engine.experimental #11471

DaveWK opened this issue Oct 3, 2024 · 40 comments · Fixed by #12193
Labels
A-op-reth Related to Optimism and op-reth C-bug An unexpected or incorrect behavior
Milestone

Comments

@DaveWK
Copy link

DaveWK commented Oct 3, 2024

Describe the bug

Oct 03 21:21:31 base-mainnet-reth.infra.proofofalpha.co start_op-reth.sh[38658]: 2024-10-03T21:21:31.173888Z INFO Status connected_peers=11 stage=MerkleExecute checkpoint=20477501 target=20589185
Oct 03 21:21:32 base-mainnet-reth.infra.proofofalpha.co start_op-reth.sh[38658]: thread 'tokio-runtime-worker' panicked at /data/base-user/.cargo/registry/src/index.crates.io-6f17d22bba15001f/alloy-trie-0.6.0/src/hash_builder/mod.rs:116:9:
Oct 03 21:21:32 base-mainnet-reth.infra.proofofalpha.co start_op-reth.sh[38658]: add_leaf key Nibbles("0503070103010e05090a0003050f0a09050c0f0009000d0b05010f030c070a060e0e0e03020a01050a09000f0d01090a0d02070c080c080809000e0600030a07") self.key Nibbles("060e0b03020d0e01010a0604080b02070a0c0d0b0b020a070a0c050b070b0f0f0f01010c0a010d0b0905080f03010700020b07090f06090d0d010f0f0709060c")
Oct 03 21:21:32 base-mainnet-reth.infra.proofofalpha.co start_op-reth.sh[38658]: stack backtrace:
Oct 03 21:21:32 base-mainnet-reth.infra.proofofalpha.co start_op-reth.sh[38658]: note: Some details are omitted, run with RUST_BACKTRACE=full for a verbose backtrace.
Oct 03 21:21:33 base-mainnet-reth.infra.proofofalpha.co start_op-reth.sh[38658]: 2024-10-03T21:21:33.040583Z ERROR Critical task pipeline task panicked: add_leaf key Nibbles("0503070103010e05090a0003050f0a09050c0f0009000d0b05010f030c070a060e0e0e03020a01050a09000f0d01090a0d02070c080c080809000e0600030a07") self.key Nibbles("060e0b03020d0e01010a0604080b02070a0c0d0b0b020a070a0c050b070b0f0f0f01010c0a010d0b0905080f03010700020b07090f06090d0d010f0f0709060c")
Oct 03 21:21:33 base-mainnet-reth.infra.proofofalpha.co start_op-reth.sh[38658]: 2024-10-03T21:21:33.040598Z ERROR backfill sync task dropped err=channel closed
Oct 03 21:21:33 base-mainnet-reth.infra.proofofalpha.co start_op-reth.sh[38658]: 2024-10-03T21:21:33.040620Z ERROR Fatal error in consensus engine
Oct 03 21:21:33 base-mainnet-reth.infra.proofofalpha.co start_op-reth.sh[38658]: 2024-10-03T21:21:33.040659Z ERROR shutting down due to error
Oct 03 21:21:33 base-mainnet-reth.infra.proofofalpha.co start_op-reth.sh[38658]: Error: Fatal error in consensus engine
Oct 03 21:21:33 base-mainnet-reth.infra.proofofalpha.co start_op-reth.sh[38658]: Location:
Oct 03 21:21:33 base-mainnet-reth.infra.proofofalpha.co start_op-reth.sh[38658]: /data/base-user/src/ret

Steps to reproduce

Attempt to run a base node, added pruinung config because didnt see any and it got too slow without one:

Node logs

How can I upload?

Platform(s)

Linux (x86)

What version/commit are you on?

v1.0.8 (make op-reth)

What database version are you on?

./bin/op-reth/v1.0.8/op-reth db --datadir ./oprethdata version
2024-10-03T21:30:34.226654Z INFO Initialized tracing, debug log directory: /data/base-user/.cache/reth/logs/dev
Current database version: 2
Local database version: 2

Which chain / network are you on?

base

What type of node are you running?

Pruned with custom reth.toml config

What prune config do you use, if any?

[prune]
block_interval = 5

[prune.segments]
sender_recovery = "full"

transaction_lookup is not pruned

receipts = { before = 11052984 } # Beacon Deposit Contract deployment block: https://etherscan.io/tx/0xe75fb554e433e03763a1560646ee22dcb74e5274b34c5ad644e7c0f619a7e1d0
account_history = { distance = 10_064 }
storage_history = { distance = 10_064 }

[prune.segments.receipts_log_filter]

If you've built Reth from source, provide the full command you used

make maxperf-op

Code of Conduct

  • I agree to follow the Code of Conduct
@DaveWK DaveWK added C-bug An unexpected or incorrect behavior S-needs-triage This issue needs to be labelled labels Oct 3, 2024
@Rjected
Copy link
Member

Rjected commented Oct 3, 2024

What's the command used to run the node?

@DaveWK
Copy link
Author

DaveWK commented Oct 3, 2024

exec ${HOME}/bin/op-reth/${OP_RETH_VER}/op-reth node --chain=base
--rollup.sequencer-http https://mainnet-sequencer.base.org
--http --http.port 8545 --ws --ws.port 8546
--http.api=web3,debug,eth,net,txpool
--ws.api=web3,debug,eth,net,txpool
--metrics=127.0.0.1:9001
--ws.origins=""
--http.corsdomain="
"
--rollup.discovery.v4
--engine.experimental
--authrpc.jwtsecret ${HOME}/jwt.hex
--datadir ${HOME}/oprethdata

@emhane
Copy link
Member

emhane commented Oct 8, 2024

these are all the prune settings you can set,either in cli or in file (part of output from running reth node --help)

Pruning:
      --full
          Run full node. Only the most recent [`MINIMUM_PRUNING_DISTANCE`] block states are stored

      --block-interval <BLOCK_INTERVAL>
          Minimum pruning interval measured in blocks
          
          [default: 0]

      --prune.senderrecovery.full
          Prunes all sender recovery data

      --prune.senderrecovery.distance <BLOCKS>
          Prune sender recovery data before the `head-N` block number. In other words, keep last N + 1 blocks

      --prune.senderrecovery.before <BLOCK_NUMBER>
          Prune sender recovery data before the specified block number. The specified block number is not pruned

      --prune.transactionlookup.full
          Prunes all transaction lookup data

      --prune.transactionlookup.distance <BLOCKS>
          Prune transaction lookup data before the `head-N` block number. In other words, keep last N + 1 blocks

      --prune.transactionlookup.before <BLOCK_NUMBER>
          Prune transaction lookup data before the specified block number. The specified block number is not pruned

      --prune.receipts.full
          Prunes all receipt data

      --prune.receipts.distance <BLOCKS>
          Prune receipts before the `head-N` block number. In other words, keep last N + 1 blocks

      --prune.receipts.before <BLOCK_NUMBER>
          Prune receipts before the specified block number. The specified block number is not pruned

      --prune.accounthistory.full
          Prunes all account history

      --prune.accounthistory.distance <BLOCKS>
          Prune account before the `head-N` block number. In other words, keep last N + 1 blocks

      --prune.accounthistory.before <BLOCK_NUMBER>
          Prune account history before the specified block number. The specified block number is not pruned

      --prune.storagehistory.full
          Prunes all storage history data

      --prune.storagehistory.distance <BLOCKS>
          Prune storage history before the `head-N` block number. In other words, keep last N + 1 blocks

      --prune.storagehistory.before <BLOCK_NUMBER>
          Prune storage history before the specified block number. The specified block number is not pruned

      --prune.receiptslogfilter <FILTER_CONFIG>
          Configure receipts log filter. Format: <`address`>:<`prune_mode`>[,<`address`>:<`prune_mode`>...] Where <`prune_mode`> can be 'full', 'distance:<`blocks`>', or 'before:<`block_number`>'

@emhane emhane added C-bug An unexpected or incorrect behavior A-op-reth Related to Optimism and op-reth and removed C-bug An unexpected or incorrect behavior S-needs-triage This issue needs to be labelled labels Oct 8, 2024
@DaveWK
Copy link
Author

DaveWK commented Oct 8, 2024

I just attempted to sync with the "consensus-layer" param from scratch on base (--full flag defined), and it appears my op-reth node got completely stuck:

Oct 08 21:21:14 start_op-reth.sh[41860]: 2024-10-08T21:21:14.923922Z  INFO Status connected_peers=8 latest_block=1991589
Oct 08 21:21:22 start_op-reth.sh[41860]: 2024-10-08T21:21:22.225793Z  INFO New payload job created id=0xee918e09e75b1eb3 parent=0x476910d4cee393b5c20442369499a6413181a5c6b0b8879442e1ac9dc6b3a9f0
Oct 08 21:21:22 start_op-reth.sh[41860]: thread 'tokio-runtime-worker' panicked at /data/base-user/.cargo/registry/src/index.crates.io-6f17d22bba15001f/alloy-trie-0.6.0/src/hash_builder/mod.rs:116:9:
Oct 08 21:21:22 start_op-reth.sh[41860]: add_leaf key Nibbles("070406020a08060c0b0b0200040c0c0a04000807010f080405090a02060b0a03010d0f060a040808090006050c0e0e0c040101080f0e0307040b07030f050c0f") self.key Nibbles("080b00060d020604010b0d040a030b0d010a0b070605050d0c0c09060803000d0f0b040d0c09080c0c09060902040a000d00000e0c020d0406090e050f010902")
Oct 08 21:21:22 start_op-reth.sh[41860]: stack backtrace:
Oct 08 21:21:22 start_op-reth.sh[41860]:    0:     0x561371612848 - <unknown>
Oct 08 21:21:22 start_op-reth.sh[41860]:    1:     0x561370a9db0b - <unknown>
Oct 08 21:21:22 start_op-reth.sh[41860]:    2:     0x5613715d5e6e - <unknown>
Oct 08 21:21:22 start_op-reth.sh[41860]:    3:     0x561371613a4e - <unknown>
Oct 08 21:21:22 start_op-reth.sh[41860]:    4:     0x5613716150a5 - <unknown>
Oct 08 21:21:22 start_op-reth.sh[41860]:    5:     0x5613716149d5 - <unknown>
Oct 08 21:21:22 start_op-reth.sh[41860]:    6:     0x561371614939 - <unknown>
Oct 08 21:21:22 start_op-reth.sh[41860]:    7:     0x561371614923 - <unknown>
Oct 08 21:21:22 start_op-reth.sh[41860]:    8:     0x56136ee71af1 - <unknown>
Oct 08 21:21:22 start_op-reth.sh[41860]:    9:     0x561370655fbc - <unknown>
Oct 08 21:21:22 start_op-reth.sh[41860]:   10:     0x561370563bd3 - <unknown>
Oct 08 21:21:22 start_op-reth.sh[41860]:   11:     0x56137055e18e - <unknown>
Oct 08 21:21:22 start_op-reth.sh[41860]:   12:     0x56136f95cbb1 - <unknown>
Oct 08 21:21:22 start_op-reth.sh[41860]:   13:     0x56136f25d299 - <unknown>
Oct 08 21:21:22 start_op-reth.sh[41860]:   14:     0x561370e614c6 - <unknown>
Oct 08 21:21:22 start_op-reth.sh[41860]:   15:     0x56136f9b117e - <unknown>
Oct 08 21:21:22 start_op-reth.sh[41860]:   16:     0x56136f997532 - <unknown>
Oct 08 21:21:22 start_op-reth.sh[41860]:   17:     0x5613713c9ebf - <unknown>
Oct 08 21:21:22 start_op-reth.sh[41860]:   18:     0x5613713c8e2e - <unknown>
Oct 08 21:21:22 start_op-reth.sh[41860]:   19:     0x5613716448e6 - <unknown>
Oct 08 21:21:22 start_op-reth.sh[41860]:   20:     0x56137164461a - <unknown>
Oct 08 21:21:22 start_op-reth.sh[41860]:   21:     0x5613716173eb - <unknown>
Oct 08 21:21:22 start_op-reth.sh[41860]:   22:     0x7f75dbe89c02 - start_thread
Oct 08 21:21:22 start_op-reth.sh[41860]:   23:     0x7f75dbf0ec40 - __GI___clone3
Oct 08 21:21:22 start_op-reth.sh[41860]:   24:                0x0 - <unknown>

Oct 08 21:21:33 start_op-reth.sh[41860]: 2024-10-08T21:21:33.909622Z  INFO New payload job created id=0xee918e09e75b1eb3 parent=0x476910d4cee393b5c20442369499a6413181a5c6b0b8879442e1ac9dc6b3a9f0
Oct 08 21:21:33 start_op-reth.sh[41860]: thread 'tokio-runtime-worker' panicked at /data/base-user/.cargo/registry/src/index.crates.io-6f17d22bba15001f/alloy-trie-0.6.0/src/hash_builder/mod.rs:116:9:
Oct 08 21:21:33 start_op-reth.sh[41860]: add_leaf key Nibbles("070406020a08060c0b0b0200040c0c0a04000807010f080405090a02060b0a03010d0f060a040808090006050c0e0e0c040101080f0e0307040b07030f050c0f") self.key Nibbles("080b00060d020604010b0d040a030b0d010a0b070605050d0c0c09060803000d0f0b040d0c09080c0c09060902040a000d00000e0c020d0406090e050f010902")
Oct 08 21:21:33 start_op-reth.sh[41860]: stack backtrace:
Oct 08 21:21:33 start_op-reth.sh[41860]:    0:     0x561371612848 - <unknown>
Oct 08 21:21:33 start_op-reth.sh[41860]:    1:     0x561370a9db0b - <unknown>
Oct 08 21:21:33 start_op-reth.sh[41860]:    2:     0x5613715d5e6e - <unknown>
Oct 08 21:21:33 start_op-reth.sh[41860]:    3:     0x561371613a4e - <unknown>
Oct 08 21:21:33 start_op-reth.sh[41860]:    4:     0x5613716150a5 - <unknown>
Oct 08 21:21:33 start_op-reth.sh[41860]:    5:     0x5613716149d5 - <unknown>
Oct 08 21:21:33 start_op-reth.sh[41860]:    6:     0x561371614939 - <unknown>
Oct 08 21:21:33 start_op-reth.sh[41860]:    7:     0x561371614923 - <unknown>
Oct 08 21:21:33 start_op-reth.sh[41860]:    8:     0x56136ee71af1 - <unknown>
Oct 08 21:21:33 start_op-reth.sh[41860]:    9:     0x561370655fbc - <unknown>
Oct 08 21:21:33 start_op-reth.sh[41860]:   10:     0x561370563bd3 - <unknown>
Oct 08 21:21:33 start_op-reth.sh[41860]:   11:     0x56137055e18e - <unknown>
Oct 08 21:21:33 start_op-reth.sh[41860]:   12:     0x56136f95cbb1 - <unknown>
Oct 08 21:21:33 start_op-reth.sh[41860]:   13:     0x56136f25d299 - <unknown>
Oct 08 21:21:33 start_op-reth.sh[41860]:   14:     0x561370e614c6 - <unknown>
Oct 08 21:21:33 start_op-reth.sh[41860]:   15:     0x56136f9b117e - <unknown>
Oct 08 21:21:33 start_op-reth.sh[41860]:   16:     0x56136f997532 - <unknown>
Oct 08 21:21:33 start_op-reth.sh[41860]:   17:     0x5613713c9ebf - <unknown>
Oct 08 21:21:33 start_op-reth.sh[41860]:   18:     0x5613713c8e2e - <unknown>
Oct 08 21:21:33 start_op-reth.sh[41860]:   19:     0x5613716448e6 - <unknown>
Oct 08 21:21:33 start_op-reth.sh[41860]:   20:     0x56137164461a - <unknown>
Oct 08 21:21:33 start_op-reth.sh[41860]:   21:     0x5613716173eb - <unknown>
Oct 08 21:21:33 start_op-reth.sh[41860]:   22:     0x7f75dbe89c02 - start_thread
Oct 08 21:21:33 start_op-reth.sh[41860]:   23:     0x7f75dbf0ec40 - __GI___clone3
Oct 08 21:21:33 start_op-reth.sh[41860]:   24:                0x0 - <unknown>


Oct 08 21:28:52 start_op-node.sh[6013]: t=2024-10-08T21:28:52+0000 lvl=warn msg="Failed to get payload" payload_id=0xee918e09e75b1eb3 payload_id=0xee918e09e75b1eb3 err="Unknown payload"
Oct 08 21:28:52 start_op-node.sh[6013]: t=2024-10-08T21:28:52+0000 lvl=warn msg="Cannot seal block, payload ID is unknown" payloadID=0xee918e09e75b1eb3 payload_time=1690772527 started_time=2024-10-08T21:28:52+0000
Oct 08 21:28:52 start_op-node.sh[6013]: t=2024-10-08T21:28:52+0000 lvl=warn msg="Block sealing job of derived attributes expired, job will be re-attempted." build_id=0xee918e09e75b1eb3 timestamp=1690772527 err="failed to seal execution payload (ID: 0xee918e09e75b1eb3): input error -38001: Unknown payload"

Is there a way to recover the progress and tell it to chill out and reject/drop the payload and carry on?

@DaveWK
Copy link
Author

DaveWK commented Oct 8, 2024

fwiw it was syncing along for a few hours, and this is at block 1,991,589

@DaveWK
Copy link
Author

DaveWK commented Oct 8, 2024

Here's the hildr logs when op-reth gets stuck in a crash loop:

Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.225 [] WARN  io.optimism.derive.stages.Batches trace_id=10272ca1aa9140ef88bf32e586c23a36 span_id=3080e55e3befe433 trace_flags=01 invalid batch timestamp, excepted=1690772527, actual=1690772517
Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.225 [] WARN  io.optimism.derive.stages.Batches trace_id=10272ca1aa9140ef88bf32e586c23a36 span_id=3080e55e3befe433 trace_flags=01 dropping invalid batch
Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.225 [] WARN  io.optimism.derive.stages.Batches trace_id=10272ca1aa9140ef88bf32e586c23a36 span_id=3080e55e3befe433 trace_flags=01 invalid batch timestamp, excepted=1690772527, actual=1690772519
Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.225 [] WARN  io.optimism.derive.stages.Batches trace_id=10272ca1aa9140ef88bf32e586c23a36 span_id=3080e55e3befe433 trace_flags=01 dropping invalid batch
Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.225 [] WARN  io.optimism.derive.stages.Batches trace_id=10272ca1aa9140ef88bf32e586c23a36 span_id=3080e55e3befe433 trace_flags=01 invalid batch timestamp, excepted=1690772527, actual=1690772521
Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.225 [] WARN  io.optimism.derive.stages.Batches trace_id=10272ca1aa9140ef88bf32e586c23a36 span_id=3080e55e3befe433 trace_flags=01 dropping invalid batch
Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.225 [] WARN  io.optimism.derive.stages.Batches trace_id=10272ca1aa9140ef88bf32e586c23a36 span_id=3080e55e3befe433 trace_flags=01 invalid batch timestamp, excepted=1690772527, actual=1690772523
Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.225 [] WARN  io.optimism.derive.stages.Batches trace_id=10272ca1aa9140ef88bf32e586c23a36 span_id=3080e55e3befe433 trace_flags=01 dropping invalid batch
Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.225 [] WARN  io.optimism.derive.stages.Batches trace_id=10272ca1aa9140ef88bf32e586c23a36 span_id=3080e55e3befe433 trace_flags=01 invalid batch timestamp, excepted=1690772527, actual=1690772525
Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.225 [] WARN  io.optimism.derive.stages.Batches trace_id=10272ca1aa9140ef88bf32e586c23a36 span_id=3080e55e3befe433 trace_flags=01 dropping invalid batch
Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.226 [] WARN  i.o.rpc.RetryRateLimitInterceptor trace_id=1193e8baa4a2965e9d2787f89d0ac4b0 span_id=729b8dd93006353f trace_flags=01 there has reached rate limit, but will retry again later
Oct 08 22:05:50 start_op-reth.sh[57609]: 2024-10-08T22:05:50.276608Z  INFO Block is already canonical, ignoring. block_hash=0x476910d4cee393b5c20442369499a6413181a5c6b0b8879442e1ac9dc6b3a9f0
Oct 08 22:05:50 start_op-reth.sh[57609]: 2024-10-08T22:05:50.276703Z  INFO Canonical chain committed number=1991589 hash=0x476910d4cee393b5c20442369499a6413181a5c6b0b8879442e1ac9dc6b3a9f0 elapsed=102.04µs
Oct 08 22:05:50 start_op-reth.sh[57609]: 2024-10-08T22:05:50.276965Z  INFO New payload job created id=0xee918e09e75b1eb3 parent=0x476910d4cee393b5c20442369499a6413181a5c6b0b8879442e1ac9dc6b3a9f0
Oct 08 22:05:50 start_op-reth.sh[57609]: thread 'tokio-runtime-worker' panicked at /data/base-user/.cargo/registry/src/index.crates.io-6f17d22bba15001f/alloy-trie-0.6.0/src/hash_builder/mod.rs:116:9:
Oct 08 22:05:50 start_op-reth.sh[57609]: add_leaf key Nibbles("070406020a08060c0b0b0200040c0c0a04000807010f080405090a02060b0a03010d0f060a040808090006050c0e0e0c040101080f0e0307040b07030f050c0f") self.key Nibbles("080b00060d020604010b0d040a030b0d010a0b070605050d0c0c09060803000d0f0b040d0c09080c0c09060902040a000d00000e0c020d0406090e050f010902")
Oct 08 22:05:50 start_op-reth.sh[57609]: stack backtrace:
Oct 08 22:05:50 start_op-reth.sh[57609]:    0:     0x55bcde648878 - <unknown>
Oct 08 22:05:50 start_op-reth.sh[57609]:    1:     0x55bcddad018b - <unknown>
Oct 08 22:05:50 start_op-reth.sh[57609]:    2:     0x55bcde60be4e - <unknown>
Oct 08 22:05:50 start_op-reth.sh[57609]:    3:     0x55bcde649a7e - <unknown>
Oct 08 22:05:50 start_op-reth.sh[57609]:    4:     0x55bcde64b0d5 - <unknown>
Oct 08 22:05:50 start_op-reth.sh[57609]:    5:     0x55bcde64aa05 - <unknown>
Oct 08 22:05:50 start_op-reth.sh[57609]:    6:     0x55bcde64a969 - <unknown>
Oct 08 22:05:50 start_op-reth.sh[57609]:    7:     0x55bcde64a953 - <unknown>
Oct 08 22:05:50 start_op-reth.sh[57609]:    8:     0x55bcdbea7381 - <unknown>
Oct 08 22:05:50 start_op-reth.sh[57609]:    9:     0x55bcdd68a36c - <unknown>
Oct 08 22:05:50 start_op-reth.sh[57609]:   10:     0x55bcdd596c66 - <unknown>
Oct 08 22:05:50 start_op-reth.sh[57609]:   11:     0x55bcdd58dc46 - <unknown>
Oct 08 22:05:50 start_op-reth.sh[57609]:   12:     0x55bcdc983d23 - <unknown>
Oct 08 22:05:50 start_op-reth.sh[57609]:   13:     0x55bcdc289249 - <unknown>
Oct 08 22:05:50 start_op-reth.sh[57609]:   14:     0x55bcdc9e8132 - <unknown>
Oct 08 22:05:50 start_op-reth.sh[57609]:   15:     0x55bcdc9c1c71 - <unknown>
Oct 08 22:05:50 start_op-reth.sh[57609]:   16:     0x55bcde3fe4ff - <unknown>
Oct 08 22:05:50 start_op-reth.sh[57609]:   17:     0x55bcde3fd46e - <unknown>
Oct 08 22:05:50 start_op-reth.sh[57609]:   18:     0x55bcde67a736 - <unknown>
Oct 08 22:05:50 start_op-reth.sh[57609]:   19:     0x55bcde67a46a - <unknown>
Oct 08 22:05:50 start_op-reth.sh[57609]:   20:     0x55bcde64d41b - <unknown>
Oct 08 22:05:50 start_op-reth.sh[57609]:   21:     0x7f7fcfc89c02 - start_thread
Oct 08 22:05:50 start_op-reth.sh[57609]:   22:     0x7f7fcfd0ec40 - __GI___clone3
Oct 08 22:05:50 start_op-reth.sh[57609]:   23:                0x0 - <unknown>
Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.284 [Driver] ERROR io.optimism.driver.Driver trace_id= span_id= trace_flags= driver run fatal error
Oct 08 22:05:50 start_op-node.sh[58191]: java.util.concurrent.ExecutionException: java.lang.NullPointerException: Cannot invoke "io.optimism.engine.OpEthExecutionPayload$ExecutionPayloadObj.getExecutionPayload()" because the return value of "io.optimism.engine.OpEthExecutionPayload.getResult()" is null
Oct 08 22:05:50 start_op-node.sh[58191]:         at java.base/java.util.concurrent.StructuredTaskScope$ShutdownOnFailure.throwIfFailed(StructuredTaskScope.java:1318)
Oct 08 22:05:50 start_op-node.sh[58191]:         at java.base/java.util.concurrent.StructuredTaskScope$ShutdownOnFailure.throwIfFailed(StructuredTaskScope.java:1295)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.Driver.advance(Driver.java:446)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.Driver.run(Driver.java:356)
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractExecutionThreadService$1.lambda$doStart$1(AbstractExecutionThreadService.java:57)
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.Callables.lambda$threadRenaming$3(Callables.java:105)
Oct 08 22:05:50 start_op-node.sh[58191]:         at java.base/java.util.concurrent.ThreadPerTaskExecutor$TaskRunner.run(ThreadPerTaskExecutor.java:314)
Oct 08 22:05:50 start_op-node.sh[58191]:         at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
Oct 08 22:05:50 start_op-node.sh[58191]: Caused by: java.lang.NullPointerException: Cannot invoke "io.optimism.engine.OpEthExecutionPayload$ExecutionPayloadObj.getExecutionPayload()" because the return value of "io.optimism.engine.OpEthExecutionPayload.getResult()" is null
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.engine.OpEthExecutionPayload.getExecutionPayload(OpEthExecutionPayload.java:32)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.EngineDriver.processAttributes(EngineDriver.java:511)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.EngineDriver.handleAttributes(EngineDriver.java:179)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.Driver.advanceSafeHead(Driver.java:485)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.Driver.lambda$advance$4(Driver.java:441)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.telemetry.TracerTaskWrapper.lambda$wrap$0(TracerTaskWrapper.java:57)
Oct 08 22:05:50 start_op-node.sh[58191]:         at java.base/java.util.concurrent.StructuredTaskScope$SubtaskImpl.run(StructuredTaskScope.java:889)
Oct 08 22:05:50 start_op-node.sh[58191]:         ... 1 common frames omitted
Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.285 [Runner] INFO  io.optimism.runner.Runner trace_id= span_id= trace_flags= runner shut down
Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.285 [Driver] INFO  io.optimism.driver.Driver trace_id= span_id= trace_flags= driver shut down.
Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.285 [Runner] INFO  io.optimism.driver.Driver trace_id= span_id= trace_flags= driver trigger shut down
Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.305 [Driver] INFO  io.optimism.driver.Driver trace_id= span_id= trace_flags= chainWatcher shut down.
Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.306 [Driver] INFO  io.optimism.driver.Driver trace_id= span_id= trace_flags= executor shut down.
Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.306 [Driver] INFO  io.optimism.driver.Driver trace_id= span_id= trace_flags= engineDriver shut down.
Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.307 [WebSocketConnectReadThread-66] ERROR o.w.p.websocket.WebSocketService trace_id= span_id= trace_flags= Failed to unsubscribe from subscription with id 0xc24efd72f570b2fa59fb7c7724a6c932
Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.308 [Driver] INFO  io.optimism.driver.Driver trace_id= span_id= trace_flags= driver stopped.
Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.308 [main] ERROR io.optimism.cli.Cli trace_id= span_id= trace_flags= hildr:
Oct 08 22:05:50 start_op-node.sh[58191]: java.lang.IllegalStateException: Expected the service Runner [FAILED] to be TERMINATED, but the service has FAILED
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractService.checkCurrentState(AbstractService.java:384)
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractService.awaitTerminated(AbstractService.java:341)
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractExecutionThreadService.awaitTerminated(AbstractExecutionThreadService.java:225)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.cli.Cli.run(Cli.java:172)
Oct 08 22:05:50 start_op-node.sh[58191]:         at picocli.CommandLine.executeUserObject(CommandLine.java:2026)
Oct 08 22:05:50 start_op-node.sh[58191]:         at picocli.CommandLine.access$1500(CommandLine.java:148)
Oct 08 22:05:50 start_op-node.sh[58191]:         at picocli.CommandLine$RunLast.executeUserObjectOfLastSubcommandWithSameParent(CommandLine.java:2461)
Oct 08 22:05:50 start_op-node.sh[58191]:         at picocli.CommandLine$RunLast.handle(CommandLine.java:2453)
Oct 08 22:05:50 start_op-node.sh[58191]:         at picocli.CommandLine$RunLast.handle(CommandLine.java:2415)
Oct 08 22:05:50 start_op-node.sh[58191]:         at picocli.CommandLine$AbstractParseResultHandler.execute(CommandLine.java:2273)
Oct 08 22:05:50 start_op-node.sh[58191]:         at picocli.CommandLine$RunLast.execute(CommandLine.java:2417)
Oct 08 22:05:50 start_op-node.sh[58191]:         at picocli.CommandLine.execute(CommandLine.java:2170)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.Hildr.main(Hildr.java:32)
Oct 08 22:05:50 start_op-node.sh[58191]: Caused by: java.lang.IllegalStateException: Expected the service Driver [FAILED] to be TERMINATED, but the service has FAILED
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractService.checkCurrentState(AbstractService.java:384)
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractService.awaitTerminated(AbstractService.java:341)
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractExecutionThreadService.awaitTerminated(AbstractExecutionThreadService.java:225)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.runner.Runner.shutDown(Runner.java:443)
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractExecutionThreadService$1.lambda$doStart$1(AbstractExecutionThreadService.java:79)
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.Callables.lambda$threadRenaming$3(Callables.java:105)
Oct 08 22:05:50 start_op-node.sh[58191]:         at java.base/java.util.concurrent.ThreadPerTaskExecutor$TaskRunner.run(ThreadPerTaskExecutor.java:314)
Oct 08 22:05:50 start_op-node.sh[58191]:         at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
Oct 08 22:05:50 start_op-node.sh[58191]: Caused by: io.optimism.exceptions.HildrServiceExecutionException: java.util.concurrent.ExecutionException: java.lang.NullPointerException: Cannot invoke "io.optimism.engine.OpEthExecutionPayload$ExecutionPayloadObj.getExecutionPayload()" because the return value of "io.optimism.engine.OpEthExecutionPayload.getResult()" is null
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.Driver.run(Driver.java:366)
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractExecutionThreadService$1.lambda$doStart$1(AbstractExecutionThreadService.java:57)
Oct 08 22:05:50 start_op-node.sh[58191]:         ... 3 common frames omitted
Oct 08 22:05:50 start_op-node.sh[58191]: Caused by: java.util.concurrent.ExecutionException: java.lang.NullPointerException: Cannot invoke "io.optimism.engine.OpEthExecutionPayload$ExecutionPayloadObj.getExecutionPayload()" because the return value of "io.optimism.engine.OpEthExecutionPayload.getResult()" is null
Oct 08 22:05:50 start_op-node.sh[58191]:         at java.base/java.util.concurrent.StructuredTaskScope$ShutdownOnFailure.throwIfFailed(StructuredTaskScope.java:1318)
Oct 08 22:05:50 start_op-node.sh[58191]:         at java.base/java.util.concurrent.StructuredTaskScope$ShutdownOnFailure.throwIfFailed(StructuredTaskScope.java:1295)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.Driver.advance(Driver.java:446)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.Driver.run(Driver.java:356)
Oct 08 22:05:50 start_op-node.sh[58191]:         ... 4 common frames omitted
Oct 08 22:05:50 start_op-node.sh[58191]: Caused by: java.lang.NullPointerException: Cannot invoke "io.optimism.engine.OpEthExecutionPayload$ExecutionPayloadObj.getExecutionPayload()" because the return value of "io.optimism.engine.OpEthExecutionPayload.getResult()" is null
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.engine.OpEthExecutionPayload.getExecutionPayload(OpEthExecutionPayload.java:32)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.EngineDriver.processAttributes(EngineDriver.java:511)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.EngineDriver.handleAttributes(EngineDriver.java:179)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.Driver.advanceSafeHead(Driver.java:485)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.Driver.lambda$advance$4(Driver.java:441)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.telemetry.TracerTaskWrapper.lambda$wrap$0(TracerTaskWrapper.java:57)
Oct 08 22:05:50 start_op-node.sh[58191]:         at java.base/java.util.concurrent.StructuredTaskScope$SubtaskImpl.run(StructuredTaskScope.java:889)
Oct 08 22:05:50 start_op-node.sh[58191]:         ... 1 common frames omitted
Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.309 [main] INFO  io.optimism.cli.Cli trace_id= span_id= trace_flags= stop inner metrics
Oct 08 22:05:50 start_op-node.sh[58191]: io.optimism.exceptions.HildrServiceExecutionException: java.lang.IllegalStateException: Expected the service Runner [FAILED] to be TERMINATED, but the service has FAILED
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.cli.Cli.run(Cli.java:175)
Oct 08 22:05:50 start_op-node.sh[58191]:         at picocli.CommandLine.executeUserObject(CommandLine.java:2026)
Oct 08 22:05:50 start_op-node.sh[58191]:         at picocli.CommandLine.access$1500(CommandLine.java:148)
Oct 08 22:05:50 start_op-node.sh[58191]:         at picocli.CommandLine$RunLast.executeUserObjectOfLastSubcommandWithSameParent(CommandLine.java:2461)
Oct 08 22:05:50 start_op-node.sh[58191]:         at picocli.CommandLine$RunLast.handle(CommandLine.java:2453)
Oct 08 22:05:50 start_op-node.sh[58191]:         at picocli.CommandLine$RunLast.handle(CommandLine.java:2415)
Oct 08 22:05:50 start_op-node.sh[58191]:         at picocli.CommandLine$AbstractParseResultHandler.execute(CommandLine.java:2273)
Oct 08 22:05:50 start_op-node.sh[58191]:         at picocli.CommandLine$RunLast.execute(CommandLine.java:2417)
Oct 08 22:05:50 start_op-node.sh[58191]:         at picocli.CommandLine.execute(CommandLine.java:2170)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.Hildr.main(Hildr.java:32)
Oct 08 22:05:50 start_op-node.sh[58191]: Caused by: java.lang.IllegalStateException: Expected the service Runner [FAILED] to be TERMINATED, but the service has FAILED
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractService.checkCurrentState(AbstractService.java:384)
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractService.awaitTerminated(AbstractService.java:341)
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractExecutionThreadService.awaitTerminated(AbstractExecutionThreadService.java:225)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.cli.Cli.run(Cli.java:172)
Oct 08 22:05:50 start_op-node.sh[58191]:         ... 9 more
Oct 08 22:05:50 start_op-node.sh[58191]: Caused by: java.lang.IllegalStateException: Expected the service Driver [FAILED] to be TERMINATED, but the service has FAILED
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractService.checkCurrentState(AbstractService.java:384)
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractService.awaitTerminated(AbstractService.java:341)
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractExecutionThreadService.awaitTerminated(AbstractExecutionThreadService.java:225)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.runner.Runner.shutDown(Runner.java:443)
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractExecutionThreadService$1.lambda$doStart$1(AbstractExecutionThreadService.java:79)
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.Callables.lambda$threadRenaming$3(Callables.java:105)
Oct 08 22:05:50 start_op-node.sh[58191]:         at java.base/java.util.concurrent.ThreadPerTaskExecutor$TaskRunner.run(ThreadPerTaskExecutor.java:314)
Oct 08 22:05:50 start_op-node.sh[58191]:         at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
Oct 08 22:05:50 start_op-node.sh[58191]: Caused by: io.optimism.exceptions.HildrServiceExecutionException: java.util.concurrent.ExecutionException: java.lang.NullPointerException: Cannot invoke "io.optimism.engine.OpEthExecutionPayload$ExecutionPayloadObj.getExecutionPayload()" because the return value of "io.optimism.engine.OpEthExecutionPayload.getResult()" is null
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.Driver.run(Driver.java:366)
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractExecutionThreadService$1.lambda$doStart$1(AbstractExecutionThreadService.java:57)
Oct 08 22:05:50 start_op-node.sh[58191]:         ... 3 more
Oct 08 22:05:50 start_op-node.sh[58191]: Caused by: java.util.concurrent.ExecutionException: java.lang.NullPointerException: Cannot invoke "io.optimism.engine.OpEthExecutionPayload$ExecutionPayloadObj.getExecutionPayload()" because the return value of "io.optimism.engine.OpEthExecutionPayload.getResult()" is null
Oct 08 22:05:50 start_op-node.sh[58191]:         at java.base/java.util.concurrent.StructuredTaskScope$ShutdownOnFailure.throwIfFailed(StructuredTaskScope.java:1318)
Oct 08 22:05:50 start_op-node.sh[58191]:         at java.base/java.util.concurrent.StructuredTaskScope$ShutdownOnFailure.throwIfFailed(StructuredTaskScope.java:1295)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.Driver.advance(Driver.java:446)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.Driver.run(Driver.java:356)
Oct 08 22:05:50 start_op-node.sh[58191]:         ... 4 more
Oct 08 22:05:50 start_op-node.sh[58191]: Caused by: java.lang.NullPointerException: Cannot invoke "io.optimism.engine.OpEthExecutionPayload$ExecutionPayloadObj.getExecutionPayload()" because the return value of "io.optimism.engine.OpEthExecutionPayload.getResult()" is null
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.engine.OpEthExecutionPayload.getExecutionPayload(OpEthExecutionPayload.java:32)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.EngineDriver.processAttributes(EngineDriver.java:511)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.EngineDriver.handleAttributes(EngineDriver.java:179)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.Driver.advanceSafeHead(Driver.java:485)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.Driver.lambda$advance$4(Driver.java:441)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.telemetry.TracerTaskWrapper.lambda$wrap$0(TracerTaskWrapper.java:57)
Oct 08 22:05:50 start_op-node.sh[58191]:         at java.base/java.util.concurrent.StructuredTaskScope$SubtaskImpl.run(StructuredTaskScope.java:889)
Oct 08 22:05:50 start_op-node.sh[58191]:         ... 1 more
Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.314 [Thread-3] INFO  io.optimism.cli.Cli trace_id= span_id= trace_flags= hildr: shutdown
Oct 08 22:05:50 start_op-node.sh[58191]: Exception in thread "Thread-3" java.lang.IllegalStateException: Expected the service Runner [FAILED] to be TERMINATED, but the service has FAILED
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractService.checkCurrentState(AbstractService.java:384)
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractService.awaitTerminated(AbstractService.java:341)
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractExecutionThreadService.awaitTerminated(AbstractExecutionThreadService.java:225)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.cli.Cli.lambda$run$2(Cli.java:167)
Oct 08 22:05:50 start_op-node.sh[58191]:         at java.base/java.lang.Thread.run(Thread.java:1583)
Oct 08 22:05:50 start_op-node.sh[58191]: Caused by: java.lang.IllegalStateException: Expected the service Driver [FAILED] to be TERMINATED, but the service has FAILED
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractService.checkCurrentState(AbstractService.java:384)
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractService.awaitTerminated(AbstractService.java:341)
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractExecutionThreadService.awaitTerminated(AbstractExecutionThreadService.java:225)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.runner.Runner.shutDown(Runner.java:443)
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractExecutionThreadService$1.lambda$doStart$1(AbstractExecutionThreadService.java:79)
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.Callables.lambda$threadRenaming$3(Callables.java:105)
Oct 08 22:05:50 start_op-node.sh[58191]:         at java.base/java.util.concurrent.ThreadPerTaskExecutor$TaskRunner.run(ThreadPerTaskExecutor.java:314)
Oct 08 22:05:50 start_op-node.sh[58191]:         at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
Oct 08 22:05:50 start_op-node.sh[58191]: Caused by: io.optimism.exceptions.HildrServiceExecutionException: java.util.concurrent.ExecutionException: java.lang.NullPointerException: Cannot invoke "io.optimism.engine.OpEthExecutionPayload$ExecutionPayloadObj.getExecutionPayload()" because the return value of "io.optimism.engine.OpEthExecutionPayload.getResult()" is null
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.Driver.run(Driver.java:366)
Oct 08 22:05:50 start_op-node.sh[58191]:         at com.google.common.util.concurrent.AbstractExecutionThreadService$1.lambda$doStart$1(AbstractExecutionThreadService.java:57)
Oct 08 22:05:50 start_op-node.sh[58191]:         ... 3 more
Oct 08 22:05:50 start_op-node.sh[58191]: Caused by: java.util.concurrent.ExecutionException: java.lang.NullPointerException: Cannot invoke "io.optimism.engine.OpEthExecutionPayload$ExecutionPayloadObj.getExecutionPayload()" because the return value of "io.optimism.engine.OpEthExecutionPayload.getResult()" is null
Oct 08 22:05:50 start_op-node.sh[58191]:         at java.base/java.util.concurrent.StructuredTaskScope$ShutdownOnFailure.throwIfFailed(StructuredTaskScope.java:1318)
Oct 08 22:05:50 start_op-node.sh[58191]:         at java.base/java.util.concurrent.StructuredTaskScope$ShutdownOnFailure.throwIfFailed(StructuredTaskScope.java:1295)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.Driver.advance(Driver.java:446)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.Driver.run(Driver.java:356)
Oct 08 22:05:50 start_op-node.sh[58191]:         ... 4 more
Oct 08 22:05:50 start_op-node.sh[58191]: Caused by: java.lang.NullPointerException: Cannot invoke "io.optimism.engine.OpEthExecutionPayload$ExecutionPayloadObj.getExecutionPayload()" because the return value of "io.optimism.engine.OpEthExecutionPayload.getResult()" is null
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.engine.OpEthExecutionPayload.getExecutionPayload(OpEthExecutionPayload.java:32)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.EngineDriver.processAttributes(EngineDriver.java:511)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.EngineDriver.handleAttributes(EngineDriver.java:179)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.Driver.advanceSafeHead(Driver.java:485)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.driver.Driver.lambda$advance$4(Driver.java:441)
Oct 08 22:05:50 start_op-node.sh[58191]:         at io.optimism.telemetry.TracerTaskWrapper.lambda$wrap$0(TracerTaskWrapper.java:57)
Oct 08 22:05:50 start_op-node.sh[58191]:         at java.base/java.util.concurrent.StructuredTaskScope$SubtaskImpl.run(StructuredTaskScope.java:889)
Oct 08 22:05:50 start_op-node.sh[58191]:         ... 1 more
Oct 08 22:05:50 systemd[1]: base-op-node.service: Main process exited, code=exited, status=1/FAILURE
Oct 08 22:05:50 systemd[1]: base-op-node.service: Failed with result 'exit-code'.

the part that I thought was curious was it will have a bunch of those:

Oct 08 22:05:50 start_op-node.sh[58191]: 22:05:50.225 [] WARN  io.optimism.derive.stages.Batches trace_id=10272ca1aa9140ef88bf32e586c23a36 span_id=3080e55e3befe433 trace_flags=01 invalid batch timestamp, excepted=1690772527, actual=1690772525

logs where there's an "invalid timestamp mismatch" -- these appear to be wall clock times. when I attempted to sync from the base snapshot, the time differential was a more drastic timestamp difference since it was from the zipped file..

Also it isn't clear to me if hildr is actually purging these "batch" records that op-node is leaving behind as if I restart the process it will seemingly have at least some of the same timestamps as the previous run..

@DaveWK
Copy link
Author

DaveWK commented Oct 9, 2024

I was able to un-stick the sync by using the advice of @BowTiedDevil in this thread (thank you!) -- #11570

I am not doing it in a container so I just ran ./bin/op-reth/op-reth stage unwind --chain base --datadir /data/base-user/oprethdata num-blocks 10000

After I did this it was able to continue to sync; it seems like the exception handling should roll the offending record that causes the crash back and delete it so the op-node/hildr/magi process can re-fetch (and do this until the epoch boundary rather than genesis)

My main concern for now I guess is how to targetedly see/delete/expire/purge these "batch" records since it seems like it would be faster for op-reth to blow away the bad batches and resync them rather than to roll back the entire 10k blocks

@emhane
Copy link
Member

emhane commented Oct 9, 2024

glad it worked out! did your node sync past the point it got stuck at first? mind that the engine experimental is experimental, and hence for perf guarantee still recommend using the traditional engine

@emhane emhane changed the title OP-Reth: Base node crashes, v1.0.8 OP-Reth: Base node crashes, v1.0.8, --engine.experimental Oct 9, 2024
@DaveWK
Copy link
Author

DaveWK commented Oct 9, 2024

It's still syncing, currently at 2,323,033 up from 1,991,589 so it got past the troublesome entry.

Wanted to also verify -- is using --syncmode=execution-layer expected to work on op-node when used with op-reth? I am using --syncmode=consensus-layer but some of the docs reference the other syncmode, but see those zero/null entries when I use execution-layer and op-node

@emhane
Copy link
Member

emhane commented Oct 9, 2024

use --syncmode=execution-layer. @joshieDo can explain the details better.

@emhane emhane closed this as completed Oct 9, 2024
@DaveWK
Copy link
Author

DaveWK commented Oct 9, 2024

Hmm, I just tried switching back (at tip of main branch, b787d9e)
and using --syncmode=execution-layer but now it's giving me a bunch of WARN messages about supposedly "invalid blocks"

Oct 09 16:12:36 base-mainnet-reth.infra.proofofalpha.co start_op-node.sh[174785]: t=2024-10-09T16:12:36+0000 lvl=info msg="Optimistically inserting unsafe L2 execution payload to drive EL sync" id=0x42c346c5fe4e235f99126cff13a7c8d619dd07999f9dbce0e71675dd1ec8285d:20850504
Oct 09 16:12:36 base-mainnet-reth.infra.proofofalpha.co start_op-node.sh[174785]: t=2024-10-09T16:12:36+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_safe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_pending_safe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_unsafe=0x42c346c5fe4e235f99126cff13a7c8d619dd07999f9dbce0e71675dd1ec8285d:20850504 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728490355
Oct 09 16:12:37 base-mainnet-reth.infra.proofofalpha.co start_op-reth.sh[174451]: 2024-10-09T16:12:37.162660Z ERROR Header cannot be attached to known canonical chain error=mismatched parent hash: got 0x25dc1f07e8115bfca9de4ef8f2839316ed2f4eaa37fe578ca93f6c3590bb692c, expected 0xa57e574f38b9a46d2252a0f6e8c12db6732177193ad7dae6bd7deea6fd07fca4 number=2324547 hash=0x0d1c8a651e839701909b3062236fcbb5b1e0f6e172bdb97054d89ea175e00f7c
Oct 09 16:12:37 base-mainnet-reth.infra.proofofalpha.co start_op-reth.sh[174451]: 2024-10-09T16:12:37.170926Z ERROR Cannot attach header to head error=mismatched parent hash: got 0x25dc1f07e8115bfca9de4ef8f2839316ed2f4eaa37fe578ca93f6c3590bb692c, expected 0xa57e574f38b9a46d2252a0f6e8c12db6732177193ad7dae6bd7deea6fd07fca4
Oct 09 16:12:37 base-mainnet-reth.infra.proofofalpha.co start_op-reth.sh[174451]: 2024-10-09T16:12:37.170949Z  WARN Stage encountered detached head stage=Headers local_head=SealedHeader { hash: 0xa57e574f38b9a46d2252a0f6e8c12db6732177193ad7dae6bd7deea6fd07fca4, header: Header { parent_hash: 0x5bbc7b2633415d8569b029aace3ac23673fa3aa7c7c81f19e7b8fee0ec429b68, ommers_hash: 0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347, beneficiary: 0x4200000000000000000000000000000000000011, state_root: 0xc2b14e340effd45069535ace08034fea6bbe0b0ba70913952bb9447ba064128f, transactions_root: 0xaf3ea864150ba6dfc7f1efa1a35e8aa9eecf9508e560261bfc41023ed9c59be7, receipts_root: 0x3f71ebd8822765e8146170b0f930f55f753dbb867f55e4e605894016cd32f1e2, withdrawals_root: None, logs_bloom: 0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000, difficulty: 0, number: 2324546, gas_limit: 30000000, gas_used: 46913, timestamp: 1691438439, mix_hash: 0xb28d7231ff6ddb8ddf81c4232d8766aac22d5650987e0525339b14078cf29d13, nonce: 0x0000000000000000, base_fee_per_gas: Some(50), blob_gas_used: None, excess_blob_gas: None, parent_beacon_block_root: None, requests_root: None, extra_data: 0x } } header=SealedHeader { hash: 0x0d1c8a651e839701909b3062236fcbb5b1e0f6e172bdb97054d89ea175e00f7c, header: Header { parent_hash: 0x25dc1f07e8115bfca9de4ef8f2839316ed2f4eaa37fe578ca93f6c3590bb692c, ommers_hash: 0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347, beneficiary: 0x4200000000000000000000000000000000000011, state_root: 0xab954f21609471ec5807c8a67d03098886edd43510c9711098c11b66fbcc495c, transactions_root: 0x76f78acb5e07f15e7a8118a8a16c46adfce7c5a7e13acebb5c709ed1167c14d1, receipts_root: 0xfb4e24b60c5e7007384841861ce7c1d26b520292b0aeb943601dc87f95c49a19, withdrawals_root: None, logs_bloom: 0x0000004000800000200000000000000000004200000000002004000000000010080028080082100000000010400800000100001080412042000100120024200800c000300000404800004088402000002000000000440800101000400000800008040200020002010000000000000800001000000000440000000010000840008000000460000015100000000000080004000600282000000000008400000000028000004000020000040000000400000062000000000000000000400000000120001002000008000000000120000000000000400005800000000002000060001010000000000040400200000000204000000408000000000200000008040000, difficulty: 0, number: 2324547, gas_limit: 30000000, gas_used: 1102909, timestamp: 1691438441, mix_hash: 0x73393ecc18bf2da7b1d7404f1b03e4a1199fa295abe3a6a6fdc21e0da6824fe7, nonce: 0x0000000000000000, base_fee_per_gas: Some(50), blob_gas_used: None, excess_blob_gas: None, parent_beacon_block_root: None, requests_root: None, extra_data: 0x } } error=mismatched parent hash: got 0x25dc1f07e8115bfca9de4ef8f2839316ed2f4eaa37fe578ca93f6c3590bb692c, expected 0xa57e574f38b9a46d2252a0f6e8c12db6732177193ad7dae6bd7deea6fd07fca4
Oct 09 16:12:37 base-mainnet-reth.infra.proofofalpha.co start_op-reth.sh[174451]: 2024-10-09T16:12:37.171012Z  INFO Unwinding{stage=Finish}: Starting unwind from=2324546 to=2324543 bad_block=Some(2324546)

However this is incorrect.. I see:
0x25dc1f07e8115bfca9de4ef8f2839316ed2f4eaa37fe578ca93f6c3590bb692c is indeed the real block (block 2324547)
and the block it claims is real and on the canonical chain, 0xa57e574f38b9a46d2252a0f6e8c12db6732177193ad7dae6bd7deea6fd07fca4 doesn't exist.. Seems like it is now unwinding valid blocks in favor of bogus ones..

Still showing:
l2_finalized=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_safe=0x0000000000000000000000000000000000000000000000000000000000000000:0

which seems wrong

@BowTiedDevil
Copy link

use --syncmode=execution-layer. @joshieDo can explain the details better.

I didn't include this in my comments in #11570, but I was already using execution-layer sync mode for op-node when I got this same crash.

Here's my op-node container config for reference (managed through Podman and systemd):

[Unit]
Description=Base Mainnet Rollup Node (op-node)

[Container]
Image=us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node:latest
Pull=newer
ContainerName=base_rollup
Pod=reth.pod
Volume=reth_jwt:/jwt:ro,z
Exec=op-node \
        --l1 ws://reth:8548 \
        --l1.trustrpc \
        --l1.beacon http://reth_consensus:5052 \
        --network base-mainnet \
        --syncmode execution-layer \
        --l2.jwt-secret /jwt/jwt.hex \
        --l2.enginekind=reth \
        --l2 http://base_reth:8751 \
        --p2p.listen.tcp 9222 \
        --p2p.listen.udp 9222

[Service]
Restart=on-failure

[Install]
WantedBy=default.target

@mattsse mattsse reopened this Oct 9, 2024
@Rjected
Copy link
Member

Rjected commented Oct 9, 2024

Let's focus this discussion on the parent hash mismatch error, and the discussion in #11570 should focus on the nibbles assertion failure. @BowTiedDevil did you also get a parent hash mismatch error?

I also think that the finalized / safe hashes being zero is fine, and not relevant to this issue.

@Rjected
Copy link
Member

Rjected commented Oct 9, 2024

Also @DaveWK is this parent hash mismatch issue reproducible with a restart?

@BowTiedDevil
Copy link

Let's focus this discussion on the parent hash mismatch error, and the discussion in #11570 should focus on the nibbles assertion failure. @BowTiedDevil did you also get a parent hash mismatch error?

I also think that the finalized / safe hashes being zero is fine, and not relevant to this issue.

I've pulled journalctl logs from my op-node container for the 30s prior to the op-reth crash, which occurred at 11:52:50.

No errors in the log until after the crash, when op-reth goes down and op-node can't communicate with it.

Oct 08 11:52:30 dev base_rollup[298087]: t=2024-10-08T18:52:30+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc38d4a8c6c0052f1d9a790801df8fc72a574afe6d1d5891bd51dd3ae10639288:20811618 l2_safe=0xb4612c93754295ae68592ed13cc5e3edaf11e1ee0cf8c32663eca8e03a2e9b30:20812082 l2_pending_safe=0xb4612c93754295ae68592ed13cc5e3edaf11e1ee0cf8c32663eca8e03a2e9b30:20812082 l2_unsafe=0x890f223b047f9e2079e3e5bacfc2defa4d95b993f557b23431538ce425578f95:20812101 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728413549
Oct 08 11:52:30 dev base_rollup[298087]: t=2024-10-08T18:52:30+0000 lvl=info msg="successfully processed payload" ref=0x890f223b047f9e2079e3e5bacfc2defa4d95b993f557b23431538ce425578f95:20812101 txs=193
Oct 08 11:52:31 dev base_rollup[298087]: t=2024-10-08T18:52:31+0000 lvl=info msg="Received signed execution payload from p2p" id=0x68ec3849361cb0ef8d384b21d5229d6d968374ed9ec80595af0506ff5bf4cd56:20812102 peer=16Uiu2HAmTpcGQQrAsEb2uhgyRhcdaC7tCKrQ7XboxWdPQhunudB6 txs=36
Oct 08 11:52:31 dev base_rollup[298087]: t=2024-10-08T18:52:31+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x68ec3849361cb0ef8d384b21d5229d6d968374ed9ec80595af0506ff5bf4cd56:20812102
Oct 08 11:52:31 dev base_rollup[298087]: t=2024-10-08T18:52:31+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc38d4a8c6c0052f1d9a790801df8fc72a574afe6d1d5891bd51dd3ae10639288:20811618 l2_safe=0xb4612c93754295ae68592ed13cc5e3edaf11e1ee0cf8c32663eca8e03a2e9b30:20812082 l2_pending_safe=0xb4612c93754295ae68592ed13cc5e3edaf11e1ee0cf8c32663eca8e03a2e9b30:20812082 l2_unsafe=0x68ec3849361cb0ef8d384b21d5229d6d968374ed9ec80595af0506ff5bf4cd56:20812102 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728413551
Oct 08 11:52:31 dev base_rollup[298087]: t=2024-10-08T18:52:31+0000 lvl=info msg="successfully processed payload" ref=0x68ec3849361cb0ef8d384b21d5229d6d968374ed9ec80595af0506ff5bf4cd56:20812102 txs=36
Oct 08 11:52:33 dev base_rollup[298087]: t=2024-10-08T18:52:33+0000 lvl=info msg="Received signed execution payload from p2p" id=0xbc77a8c9818b3dfb89a22698adf2713b3e3608d0f79fb60c3e118d8125909fbd:20812103 peer=16Uiu2HAmQLB7GNjJf8W5CeWXPgAxjuqCnzBfv9HkFbSSnUhwbD5n txs=182
Oct 08 11:52:33 dev base_rollup[298087]: t=2024-10-08T18:52:33+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0xbc77a8c9818b3dfb89a22698adf2713b3e3608d0f79fb60c3e118d8125909fbd:20812103
Oct 08 11:52:34 dev base_rollup[298087]: t=2024-10-08T18:52:34+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc38d4a8c6c0052f1d9a790801df8fc72a574afe6d1d5891bd51dd3ae10639288:20811618 l2_safe=0xb4612c93754295ae68592ed13cc5e3edaf11e1ee0cf8c32663eca8e03a2e9b30:20812082 l2_pending_safe=0xb4612c93754295ae68592ed13cc5e3edaf11e1ee0cf8c32663eca8e03a2e9b30:20812082 l2_unsafe=0xbc77a8c9818b3dfb89a22698adf2713b3e3608d0f79fb60c3e118d8125909fbd:20812103 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728413553
Oct 08 11:52:34 dev base_rollup[298087]: t=2024-10-08T18:52:34+0000 lvl=info msg="successfully processed payload" ref=0xbc77a8c9818b3dfb89a22698adf2713b3e3608d0f79fb60c3e118d8125909fbd:20812103 txs=182
Oct 08 11:52:35 dev base_rollup[298087]: t=2024-10-08T18:52:35+0000 lvl=info msg="connected to peer" peer=16Uiu2HAm2CHLTzUbiV4birAyA3WnjthoGEaf91RKAWRDLkgneAMe addr=/ip4/185.127.231.90/tcp/24025
Oct 08 11:52:35 dev base_rollup[298087]: t=2024-10-08T18:52:35+0000 lvl=info msg="Starting P2P sync client event loop" peer=16Uiu2HAm2CHLTzUbiV4birAyA3WnjthoGEaf91RKAWRDLkgneAMe
Oct 08 11:52:35 dev base_rollup[298087]: t=2024-10-08T18:52:35+0000 lvl=info msg="Received signed execution payload from p2p" id=0xbb30432d63b419674790bc58ff1cc6f3fbc49cf2685f16a9864c534a37963e70:20812104 peer=16Uiu2HAm3wAvc1vBfFH96hLHGcEg9B6uSP7HjVRGtkEf4hMcCbrQ txs=94
Oct 08 11:52:35 dev base_rollup[298087]: t=2024-10-08T18:52:35+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0xbb30432d63b419674790bc58ff1cc6f3fbc49cf2685f16a9864c534a37963e70:20812104
Oct 08 11:52:35 dev base_rollup[298087]: t=2024-10-08T18:52:35+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc38d4a8c6c0052f1d9a790801df8fc72a574afe6d1d5891bd51dd3ae10639288:20811618 l2_safe=0xb4612c93754295ae68592ed13cc5e3edaf11e1ee0cf8c32663eca8e03a2e9b30:20812082 l2_pending_safe=0xb4612c93754295ae68592ed13cc5e3edaf11e1ee0cf8c32663eca8e03a2e9b30:20812082 l2_unsafe=0xbb30432d63b419674790bc58ff1cc6f3fbc49cf2685f16a9864c534a37963e70:20812104 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728413555
Oct 08 11:52:35 dev base_rollup[298087]: t=2024-10-08T18:52:35+0000 lvl=info msg="successfully processed payload" ref=0xbb30432d63b419674790bc58ff1cc6f3fbc49cf2685f16a9864c534a37963e70:20812104 txs=94
Oct 08 11:52:36 dev base_rollup[298087]: t=2024-10-08T18:52:36+0000 lvl=info msg="disconnected from peer" peer=16Uiu2HAm2CHLTzUbiV4birAyA3WnjthoGEaf91RKAWRDLkgneAMe addr=/ip4/185.127.231.90/tcp/24025
Oct 08 11:52:37 dev base_rollup[298087]: t=2024-10-08T18:52:37+0000 lvl=info msg="Advancing bq origin" origin=0xb18964a492d9a0bc3c7c60c7d85cb8a734f62ff933662105533bea46609d420d:20922777 originBehind=false
Oct 08 11:52:38 dev base_rollup[298087]: t=2024-10-08T18:52:38+0000 lvl=info msg="Received signed execution payload from p2p" id=0x279b0913a8d0d5a671b9f71ccd831b9218084e85395aa239982abfd0ea175bf1:20812105 peer=16Uiu2HAm6PMxybXyuxefkqtYjAArLEdbsuwtYhG8jAPEnq17e8BK txs=94
Oct 08 11:52:38 dev base_rollup[298087]: t=2024-10-08T18:52:38+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x279b0913a8d0d5a671b9f71ccd831b9218084e85395aa239982abfd0ea175bf1:20812105
Oct 08 11:52:38 dev base_rollup[298087]: t=2024-10-08T18:52:38+0000 lvl=info msg="connected to peer" peer=16Uiu2HAmUScrpbz1TzRARV9a5dEEB7hHqejyPr3PR3oaUeW963pS addr=/ip4/138.201.196.242/tcp/44538
Oct 08 11:52:38 dev base_rollup[298087]: t=2024-10-08T18:52:38+0000 lvl=info msg="Starting P2P sync client event loop" peer=16Uiu2HAmUScrpbz1TzRARV9a5dEEB7hHqejyPr3PR3oaUeW963pS
Oct 08 11:52:38 dev base_rollup[298087]: t=2024-10-08T18:52:38+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc38d4a8c6c0052f1d9a790801df8fc72a574afe6d1d5891bd51dd3ae10639288:20811618 l2_safe=0xb4612c93754295ae68592ed13cc5e3edaf11e1ee0cf8c32663eca8e03a2e9b30:20812082 l2_pending_safe=0xb4612c93754295ae68592ed13cc5e3edaf11e1ee0cf8c32663eca8e03a2e9b30:20812082 l2_unsafe=0x279b0913a8d0d5a671b9f71ccd831b9218084e85395aa239982abfd0ea175bf1:20812105 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728413557
Oct 08 11:52:38 dev base_rollup[298087]: t=2024-10-08T18:52:38+0000 lvl=info msg="successfully processed payload" ref=0x279b0913a8d0d5a671b9f71ccd831b9218084e85395aa239982abfd0ea175bf1:20812105 txs=94
Oct 08 11:52:39 dev base_rollup[298087]: t=2024-10-08T18:52:39+0000 lvl=info msg="disconnected from peer" peer=16Uiu2HAmUScrpbz1TzRARV9a5dEEB7hHqejyPr3PR3oaUeW963pS addr=/ip4/138.201.196.242/tcp/44538
Oct 08 11:52:40 dev base_rollup[298087]: t=2024-10-08T18:52:40+0000 lvl=info msg="connected to peer" peer=16Uiu2HAmVfgSWsdmba7oTpBZHAnENHUwUeNSJJusfCHNpSxUwCpS addr=/ip4/88.118.180.37/tcp/36702
Oct 08 11:52:40 dev base_rollup[298087]: t=2024-10-08T18:52:40+0000 lvl=info msg="Starting P2P sync client event loop" peer=16Uiu2HAmVfgSWsdmba7oTpBZHAnENHUwUeNSJJusfCHNpSxUwCpS
Oct 08 11:52:40 dev base_rollup[298087]: t=2024-10-08T18:52:40+0000 lvl=info msg="Received signed execution payload from p2p" id=0x948dc76b936d0da9ea0bca96ec32d03026f5dee105b77801d0b6469049295894:20812106 peer=16Uiu2HAm3wAvc1vBfFH96hLHGcEg9B6uSP7HjVRGtkEf4hMcCbrQ txs=161
Oct 08 11:52:40 dev base_rollup[298087]: t=2024-10-08T18:52:40+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x948dc76b936d0da9ea0bca96ec32d03026f5dee105b77801d0b6469049295894:20812106
Oct 08 11:52:40 dev base_rollup[298087]: t=2024-10-08T18:52:40+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc38d4a8c6c0052f1d9a790801df8fc72a574afe6d1d5891bd51dd3ae10639288:20811618 l2_safe=0xb4612c93754295ae68592ed13cc5e3edaf11e1ee0cf8c32663eca8e03a2e9b30:20812082 l2_pending_safe=0xb4612c93754295ae68592ed13cc5e3edaf11e1ee0cf8c32663eca8e03a2e9b30:20812082 l2_unsafe=0x948dc76b936d0da9ea0bca96ec32d03026f5dee105b77801d0b6469049295894:20812106 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728413559
Oct 08 11:52:40 dev base_rollup[298087]: t=2024-10-08T18:52:40+0000 lvl=info msg="successfully processed payload" ref=0x948dc76b936d0da9ea0bca96ec32d03026f5dee105b77801d0b6469049295894:20812106 txs=161
Oct 08 11:52:40 dev base_rollup[298087]: t=2024-10-08T18:52:40+0000 lvl=info msg="disconnected from peer" peer=16Uiu2HAmVfgSWsdmba7oTpBZHAnENHUwUeNSJJusfCHNpSxUwCpS addr=/ip4/88.118.180.37/tcp/36702
Oct 08 11:52:42 dev base_rollup[298087]: t=2024-10-08T18:52:42+0000 lvl=info msg="Received signed execution payload from p2p" id=0x4129943b8aa69eff288678c58758fa19636d598b2a663d33aa468e943de669e6:20812107 peer=16Uiu2HAkzC4He52zwa75R34gQQgTMa8jrVmDMwtiSRYvd8UPSCVR txs=130
Oct 08 11:52:42 dev base_rollup[298087]: t=2024-10-08T18:52:42+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x4129943b8aa69eff288678c58758fa19636d598b2a663d33aa468e943de669e6:20812107
Oct 08 11:52:42 dev base_rollup[298087]: t=2024-10-08T18:52:42+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc38d4a8c6c0052f1d9a790801df8fc72a574afe6d1d5891bd51dd3ae10639288:20811618 l2_safe=0xb4612c93754295ae68592ed13cc5e3edaf11e1ee0cf8c32663eca8e03a2e9b30:20812082 l2_pending_safe=0xb4612c93754295ae68592ed13cc5e3edaf11e1ee0cf8c32663eca8e03a2e9b30:20812082 l2_unsafe=0x4129943b8aa69eff288678c58758fa19636d598b2a663d33aa468e943de669e6:20812107 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728413561
Oct 08 11:52:42 dev base_rollup[298087]: t=2024-10-08T18:52:42+0000 lvl=info msg="successfully processed payload" ref=0x4129943b8aa69eff288678c58758fa19636d598b2a663d33aa468e943de669e6:20812107 txs=130
Oct 08 11:52:42 dev base_rollup[298087]: t=2024-10-08T18:52:42+0000 lvl=info msg="connected to peer" peer=16Uiu2HAmVjjEqKqrSLg7vVND6UjoBrZ6pAUKwNHA4Mfo5TjRcu99 addr=/ip4/212.222.9.230/tcp/45988
Oct 08 11:52:42 dev base_rollup[298087]: t=2024-10-08T18:52:42+0000 lvl=info msg="Starting P2P sync client event loop" peer=16Uiu2HAmVjjEqKqrSLg7vVND6UjoBrZ6pAUKwNHA4Mfo5TjRcu99
Oct 08 11:52:43 dev base_rollup[298087]: t=2024-10-08T18:52:43+0000 lvl=info msg="connected to peer" peer=16Uiu2HAmUpnmpHjCfxiHCEa2Uzjf2iTYqpsAemamA4TdBKtGLBsB addr=/ip4/72.215.3.210/tcp/33389
Oct 08 11:52:43 dev base_rollup[298087]: t=2024-10-08T18:52:43+0000 lvl=info msg="Starting P2P sync client event loop" peer=16Uiu2HAmUpnmpHjCfxiHCEa2Uzjf2iTYqpsAemamA4TdBKtGLBsB
Oct 08 11:52:43 dev base_rollup[298087]: t=2024-10-08T18:52:43+0000 lvl=info msg="disconnected from peer" peer=16Uiu2HAmVjjEqKqrSLg7vVND6UjoBrZ6pAUKwNHA4Mfo5TjRcu99 addr=/ip4/212.222.9.230/tcp/45988
Oct 08 11:52:43 dev base_rollup[298087]: t=2024-10-08T18:52:43+0000 lvl=info msg="disconnected from peer" peer=16Uiu2HAmUpnmpHjCfxiHCEa2Uzjf2iTYqpsAemamA4TdBKtGLBsB addr=/ip4/72.215.3.210/tcp/33389
Oct 08 11:52:44 dev base_rollup[298087]: t=2024-10-08T18:52:44+0000 lvl=info msg="Received signed execution payload from p2p" id=0x924bec621f90c205238f1adab221c1518e6343d601141ebb2222183eb226d5c8:20812108 peer=16Uiu2HAm7yLo5HXXoTecmZjEx4hZh85RyWQhShi1WNtXGnUSztNW txs=91
Oct 08 11:52:44 dev base_rollup[298087]: t=2024-10-08T18:52:44+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x924bec621f90c205238f1adab221c1518e6343d601141ebb2222183eb226d5c8:20812108
Oct 08 11:52:44 dev base_rollup[298087]: t=2024-10-08T18:52:44+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc38d4a8c6c0052f1d9a790801df8fc72a574afe6d1d5891bd51dd3ae10639288:20811618 l2_safe=0xb4612c93754295ae68592ed13cc5e3edaf11e1ee0cf8c32663eca8e03a2e9b30:20812082 l2_pending_safe=0xb4612c93754295ae68592ed13cc5e3edaf11e1ee0cf8c32663eca8e03a2e9b30:20812082 l2_unsafe=0x924bec621f90c205238f1adab221c1518e6343d601141ebb2222183eb226d5c8:20812108 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728413563
Oct 08 11:52:44 dev base_rollup[298087]: t=2024-10-08T18:52:44+0000 lvl=info msg="successfully processed payload" ref=0x924bec621f90c205238f1adab221c1518e6343d601141ebb2222183eb226d5c8:20812108 txs=91
Oct 08 11:52:45 dev base_rollup[298087]: t=2024-10-08T18:52:45+0000 lvl=info msg="connected to peer" peer=16Uiu2HAm2CHLTzUbiV4birAyA3WnjthoGEaf91RKAWRDLkgneAMe addr=/ip4/185.127.231.90/tcp/28513
Oct 08 11:52:45 dev base_rollup[298087]: t=2024-10-08T18:52:45+0000 lvl=info msg="Starting P2P sync client event loop" peer=16Uiu2HAm2CHLTzUbiV4birAyA3WnjthoGEaf91RKAWRDLkgneAMe
Oct 08 11:52:45 dev base_rollup[298087]: t=2024-10-08T18:52:45+0000 lvl=info msg="disconnected from peer" peer=16Uiu2HAm2CHLTzUbiV4birAyA3WnjthoGEaf91RKAWRDLkgneAMe addr=/ip4/185.127.231.90/tcp/28513
Oct 08 11:52:46 dev base_rollup[298087]: t=2024-10-08T18:52:46+0000 lvl=info msg="Received signed execution payload from p2p" id=0x9f37d8d612e8ae4ddf259460b958791eb26361e20b04a5ea288e8617d9773eb8:20812109 peer=16Uiu2HAkzC4He52zwa75R34gQQgTMa8jrVmDMwtiSRYvd8UPSCVR txs=134
Oct 08 11:52:46 dev base_rollup[298087]: t=2024-10-08T18:52:46+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x9f37d8d612e8ae4ddf259460b958791eb26361e20b04a5ea288e8617d9773eb8:20812109
Oct 08 11:52:46 dev base_rollup[298087]: t=2024-10-08T18:52:46+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc38d4a8c6c0052f1d9a790801df8fc72a574afe6d1d5891bd51dd3ae10639288:20811618 l2_safe=0xb4612c93754295ae68592ed13cc5e3edaf11e1ee0cf8c32663eca8e03a2e9b30:20812082 l2_pending_safe=0xb4612c93754295ae68592ed13cc5e3edaf11e1ee0cf8c32663eca8e03a2e9b30:20812082 l2_unsafe=0x9f37d8d612e8ae4ddf259460b958791eb26361e20b04a5ea288e8617d9773eb8:20812109 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728413565
Oct 08 11:52:46 dev base_rollup[298087]: t=2024-10-08T18:52:46+0000 lvl=info msg="successfully processed payload" ref=0x9f37d8d612e8ae4ddf259460b958791eb26361e20b04a5ea288e8617d9773eb8:20812109 txs=134
Oct 08 11:52:47 dev base_rollup[298087]: t=2024-10-08T18:52:47+0000 lvl=info msg="disconnected from peer" peer=16Uiu2HAmP89JFhE8mt8ahWe91WwwPPiuikbaEj2bYMG94nobBthu addr=/ip4/3.0.98.105/tcp/9222
Oct 08 11:52:48 dev base_rollup[298087]: t=2024-10-08T18:52:48+0000 lvl=info msg="Received signed execution payload from p2p" id=0x429b04e7c3c0f0a31f86d603ea25af6e97d44685e11ace8820f83c9ad57716ad:20812110 peer=16Uiu2HAmTSQzteB3qzoJmcRRWSeqA7RDZZF1Rni1rXg5Gco2RBKE txs=144
Oct 08 11:52:48 dev base_rollup[298087]: t=2024-10-08T18:52:48+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x429b04e7c3c0f0a31f86d603ea25af6e97d44685e11ace8820f83c9ad57716ad:20812110
Oct 08 11:52:48 dev base_rollup[298087]: t=2024-10-08T18:52:48+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc38d4a8c6c0052f1d9a790801df8fc72a574afe6d1d5891bd51dd3ae10639288:20811618 l2_safe=0xb4612c93754295ae68592ed13cc5e3edaf11e1ee0cf8c32663eca8e03a2e9b30:20812082 l2_pending_safe=0xb4612c93754295ae68592ed13cc5e3edaf11e1ee0cf8c32663eca8e03a2e9b30:20812082 l2_unsafe=0x429b04e7c3c0f0a31f86d603ea25af6e97d44685e11ace8820f83c9ad57716ad:20812110 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728413567
Oct 08 11:52:48 dev base_rollup[298087]: t=2024-10-08T18:52:48+0000 lvl=info msg="successfully processed payload" ref=0x429b04e7c3c0f0a31f86d603ea25af6e97d44685e11ace8820f83c9ad57716ad:20812110 txs=144
Oct 08 11:52:48 dev base_rollup[298087]: t=2024-10-08T18:52:48+0000 lvl=info msg="connected to peer" peer=16Uiu2HAm2CHLTzUbiV4birAyA3WnjthoGEaf91RKAWRDLkgneAMe addr=/ip4/185.127.231.90/tcp/15233
Oct 08 11:52:48 dev base_rollup[298087]: t=2024-10-08T18:52:48+0000 lvl=info msg="Starting P2P sync client event loop" peer=16Uiu2HAm2CHLTzUbiV4birAyA3WnjthoGEaf91RKAWRDLkgneAMe
Oct 08 11:52:48 dev base_rollup[298087]: t=2024-10-08T18:52:48+0000 lvl=info msg="disconnected from peer" peer=16Uiu2HAm2CHLTzUbiV4birAyA3WnjthoGEaf91RKAWRDLkgneAMe addr=/ip4/185.127.231.90/tcp/15233
Oct 08 11:52:50 dev base_rollup[298087]: t=2024-10-08T18:52:50+0000 lvl=info msg="Received signed execution payload from p2p" id=0x2a59d3cb38a311371cc7afb1a5a09c87698a8a5e4fd0e84f65e9193615d82258:20812111 peer=16Uiu2HAmTUiRQw5PqmBqAy2TsgrLGkNvNkEnysrWEEpTZ1tDCFtd txs=102
Oct 08 11:52:50 dev base_rollup[298087]: t=2024-10-08T18:52:50+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x2a59d3cb38a311371cc7afb1a5a09c87698a8a5e4fd0e84f65e9193615d82258:20812111
Oct 08 11:52:50 dev base_rollup[298087]: t=2024-10-08T18:52:50+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc38d4a8c6c0052f1d9a790801df8fc72a574afe6d1d5891bd51dd3ae10639288:20811618 l2_safe=0xb4612c93754295ae68592ed13cc5e3edaf11e1ee0cf8c32663eca8e03a2e9b30:20812082 l2_pending_safe=0xb4612c93754295ae68592ed13cc5e3edaf11e1ee0cf8c32663eca8e03a2e9b30:20812082 l2_unsafe=0x2a59d3cb38a311371cc7afb1a5a09c87698a8a5e4fd0e84f65e9193615d82258:20812111 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728413569
Oct 08 11:52:50 dev base_rollup[298087]: t=2024-10-08T18:52:50+0000 lvl=info msg="successfully processed payload" ref=0x2a59d3cb38a311371cc7afb1a5a09c87698a8a5e4fd0e84f65e9193615d82258:20812111 txs=102
Oct 08 11:52:50 dev base_rollup[298087]: t=2024-10-08T18:52:50+0000 lvl=info msg="Advancing bq origin" origin=0x54432d6d94fa2366dc7c4f52e52b9b79370c387b52f4dcc1fd5e8d197876b6c6:20922778 originBehind=false
Oct 08 11:52:51 dev base_rollup[298087]: t=2024-10-08T18:52:51+0000 lvl=info msg="connected to peer" peer=16Uiu2HAm2CHLTzUbiV4birAyA3WnjthoGEaf91RKAWRDLkgneAMe addr=/ip4/185.127.231.90/tcp/49578
Oct 08 11:52:51 dev base_rollup[298087]: t=2024-10-08T18:52:51+0000 lvl=info msg="Starting P2P sync client event loop" peer=16Uiu2HAm2CHLTzUbiV4birAyA3WnjthoGEaf91RKAWRDLkgneAMe
Oct 08 11:52:51 dev base_rollup[298087]: t=2024-10-08T18:52:51+0000 lvl=info msg="Received signed execution payload from p2p" id=0x3a18e192d89bd769258be2ce3e4b310cd55f155f4a57626238104cb9e5ad83cf:20812112 peer=16Uiu2HAm3fNc7RfRYzjqtVjW9uTgzPEtuxvEBGe96Vq4z4PjCphH txs=108
Oct 08 11:52:51 dev base_rollup[298087]: t=2024-10-08T18:52:51+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x3a18e192d89bd769258be2ce3e4b310cd55f155f4a57626238104cb9e5ad83cf:20812112
Oct 08 11:52:51 dev base_rollup[298087]: t=2024-10-08T18:52:51+0000 lvl=info msg="disconnected from peer" peer=16Uiu2HAm2CHLTzUbiV4birAyA3WnjthoGEaf91RKAWRDLkgneAMe addr=/ip4/185.127.231.90/tcp/49578
Oct 08 11:52:54 dev base_rollup[298087]: t=2024-10-08T18:52:54+0000 lvl=info msg="Received signed execution payload from p2p" id=0x73458b8a6654eb5edcecd13be8f11298f57b6ed1bb509d04c9a18ab5dc073288:20812113 peer=16Uiu2HAm18eQT8fMUE8yu552DQs8hrCv68JzaMbd4a7tp4pwHCfc txs=98
Oct 08 11:52:56 dev base_rollup[298087]: t=2024-10-08T18:52:56+0000 lvl=info msg="Received signed execution payload from p2p" id=0x5d0f631ea62cd1741c8958e69a3c5a168415eb0eb473bd07d13c185215ecf29a:20812114 peer=16Uiu2HAmAk5k3YeVzsffKPRXDnjtedyTRiipNLSDwBoopbE3akpe txs=179
Oct 08 11:52:56 dev base_rollup[298087]: t=2024-10-08T18:52:56+0000 lvl=error msg="Payload execution failed" block_hash=0x3a18e192d89bd769258be2ce3e4b310cd55f155f4a57626238104cb9e5ad83cf err="Post \"http://base_reth:8751\": context deadline exceeded"
Oct 08 11:52:56 dev base_rollup[298087]: t=2024-10-08T18:52:56+0000 lvl=info msg="failed to insert payload" ref=0x3a18e192d89bd769258be2ce3e4b310cd55f155f4a57626238104cb9e5ad83cf:20812112 txs=108 err="temp: failed to update insert payload: failed to execute payload: Post \"http://base_reth:8751\": context deadline exceeded"
Oct 08 11:52:56 dev base_rollup[298087]: t=2024-10-08T18:52:56+0000 lvl=warn msg="Engine temporary error" err="temp: failed to update insert payload: failed to execute payload: Post \"http://base_reth:8751\": context deadline exceeded"
Oct 08 11:52:56 dev base_rollup[298087]: t=2024-10-08T18:52:56+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x73458b8a6654eb5edcecd13be8f11298f57b6ed1bb509d04c9a18ab5dc073288:20812113
Oct 08 11:52:58 dev base_rollup[298087]: t=2024-10-08T18:52:58+0000 lvl=info msg="Received signed execution payload from p2p" id=0x62baba6a2c081713c1367dc22ee730b06f54e649e35df71e7f9dcc81251bc3bb:20812115 peer=16Uiu2HAmTUiRQw5PqmBqAy2TsgrLGkNvNkEnysrWEEpTZ1tDCFtd txs=127

@DaveWK
Copy link
Author

DaveWK commented Oct 9, 2024

Yes -- if I restart op-node/reth it will continue looping over downloading all the headers from latest to 0, and then complain about another additional allegedly "bad block" when running with execution-layer and unwinding

I swapped back to consensus-layer and am waiting to see if it heals itself and eventually starts syncing and advancing the "actually correct" canonical chain

@DaveWK
Copy link
Author

DaveWK commented Oct 10, 2024

I 'm optimistic 😜 this commit will fix things for me -- #11623

building it now.. At the very least this will stop hildr from crash-looping with null value exceptions.

my working theory is the bogus block hashes come from a forkchoice someplace that gets hashed with a 0x000 parent block, canonicalized, then it starts unwinding the real blocks (or something along those lines).

@MrFrogoz
Copy link

I'll try it now too, if it doesn't cause any problems in the next few days, I'll close the issue

@DaveWK
Copy link
Author

DaveWK commented Oct 10, 2024

I'm doing a sync from scratch base-node with --engine.experimental --synctype=execution-layer and hildr; at this point its finishing SenderRecovery, I think it starts getting choppy during ExecutionLayer for me.

When I tried the new version with my existing db it started a rewind and seemed to get stuck/move v slowly, but it probably has to do with some edge case of switching between execution/consensus sync and with/without experimental a few times while troubleshooting.

One last q, can also open a new ticket -- is there some way to make it leverage the static_files for a resync? I notice when I just delete the db folder it seems to drop the static_files but would assumingly be faster to sync from that instead of re-downloading them all.

@DaveWK
Copy link
Author

DaveWK commented Oct 10, 2024

Now it immediately fails when I attempt from-scratch sync on execution-layer it seems, winds back, and is seemingly stuck in the SenderRecovery stage at 100%, target=0:

Oct 10 18:07:25 start_op-reth.sh[546973]: 2024-10-10T18:07:25.560532Z  INFO Executing stage pipeline_stages=3/14 stage=SenderRecovery checkpoint=20857420 target=20893452 stage_eta=15s
Oct 10 18:07:25 start_op-reth.sh[546973]: 2024-10-10T18:07:25.561726Z  INFO Recovering senders tx_range=800006897..805006939
Oct 10 18:07:37 start_op-reth.sh[546973]: 2024-10-10T18:07:37.073049Z  INFO Status connected_peers=95 stage=SenderRecovery checkpoint=20857420 target=20893452 stage_progress=99.36% stage_eta=4s
Oct 10 18:07:41 start_op-reth.sh[546973]: 2024-10-10T18:07:41.385234Z  INFO Committed stage progress pipeline_stages=3/14 stage=SenderRecovery checkpoint=20892816 target=20893452 stage_progress=99.98% stage_eta=>
Oct 10 18:07:41 start_op-reth.sh[546973]: 2024-10-10T18:07:41.394365Z  INFO Preparing stage pipeline_stages=3/14 stage=SenderRecovery checkpoint=20892816 target=20893452
Oct 10 18:07:41 start_op-reth.sh[546973]: 2024-10-10T18:07:41.394379Z  INFO Executing stage pipeline_stages=3/14 stage=SenderRecovery checkpoint=20892816 target=20893452 stage_eta=0s
Oct 10 18:07:41 start_op-reth.sh[546973]: 2024-10-10T18:07:41.394401Z  INFO Recovering senders tx_range=805006939..805101991
Oct 10 18:07:41 start_op-reth.sh[546973]: 2024-10-10T18:07:41.686394Z  INFO Finished stage pipeline_stages=3/14 stage=SenderRecovery checkpoint=20893452 target=20893452 stage_progress=100.00% stage_eta=unknown
Oct 10 18:07:41 start_op-reth.sh[546973]: 2024-10-10T18:07:41.693551Z  INFO Preparing stage pipeline_stages=4/14 stage=Execution checkpoint=0 target=20893452
Oct 10 18:07:41 start_op-reth.sh[546973]: 2024-10-10T18:07:41.695310Z  INFO Executing stage pipeline_stages=4/14 stage=Execution checkpoint=0 target=20893452
Oct 10 18:08:02 start_op-reth.sh[546973]: 2024-10-10T18:08:02.072846Z  INFO Status connected_peers=94 stage=Execution checkpoint=0 target=20893452
Oct 10 18:08:22 start_op-reth.sh[546973]: 2024-10-10T18:08:22.816833Z ERROR Stage encountered an execution error: receipt root mismatch: got 0xcc9ffc6900c53906a15631f3fa81198a02ecabfba68ce9f0a6947a92d0499bb0, ex>
Oct 10 18:08:22 start_op-reth.sh[546973]: 2024-10-10T18:08:22.817676Z  INFO Unwinding{stage=Finish}: Starting unwind from=0 to=0 bad_block=Some(1)
Oct 10 18:08:22 start_op-reth.sh[546973]: 2024-10-10T18:08:22.818434Z  INFO Unwinding{stage=Prune}: Starting unwind from=0 to=0 bad_block=Some(1)
Oct 10 18:08:22 start_op-reth.sh[546973]: 2024-10-10T18:08:22.818907Z  INFO Unwinding{stage=IndexAccountHistory}: Starting unwind from=0 to=0 bad_block=Some(1)
Oct 10 18:08:22 start_op-reth.sh[546973]: 2024-10-10T18:08:22.818917Z  INFO Unwinding{stage=IndexStorageHistory}: Starting unwind from=0 to=0 bad_block=Some(1)
Oct 10 18:08:22 start_op-reth.sh[546973]: 2024-10-10T18:08:22.819875Z  INFO Unwinding{stage=TransactionLookup}: Starting unwind from=0 to=0 bad_block=Some(1)
Oct 10 18:08:22 start_op-reth.sh[546973]: 2024-10-10T18:08:22.819884Z  INFO Unwinding{stage=MerkleExecute}: Starting unwind from=0 to=0 bad_block=Some(1)
Oct 10 18:08:22 start_op-reth.sh[546973]: 2024-10-10T18:08:22.820914Z  INFO Unwinding{stage=StorageHashing}: Starting unwind from=0 to=0 bad_block=Some(1)
Oct 10 18:08:22 start_op-reth.sh[546973]: 2024-10-10T18:08:22.820922Z  INFO Unwinding{stage=AccountHashing}: Starting unwind from=0 to=0 bad_block=Some(1)
Oct 10 18:08:22 start_op-reth.sh[546973]: 2024-10-10T18:08:22.820928Z  INFO Unwinding{stage=MerkleUnwind}: Starting unwind from=0 to=0 bad_block=Some(1)
Oct 10 18:08:22 start_op-reth.sh[546973]: 2024-10-10T18:08:22.821424Z  INFO Unwinding{stage=PruneSenderRecovery}: Starting unwind from=0 to=0 bad_block=Some(1)
Oct 10 18:08:22 start_op-reth.sh[546973]: 2024-10-10T18:08:22.821433Z  INFO Unwinding{stage=Execution}: Starting unwind from=0 to=0 bad_block=Some(1)
Oct 10 18:08:22 start_op-reth.sh[546973]: 2024-10-10T18:08:22.821440Z  INFO Unwinding{stage=SenderRecovery}: Starting unwind from=20893452 to=0 bad_block=Some(1)
Oct 10 18:08:27 start_op-reth.sh[546973]: 2024-10-10T18:08:27.073075Z  INFO Status connected_peers=94 stage=SenderRecovery checkpoint=20893452 target=0 stage_progress=100.00%
Oct 10 18:08:52 start_op-reth.sh[546973]: 2024-10-10T18:08:52.072673Z  INFO Status connected_peers=94 stage=SenderRecovery checkpoint=20893452 target=0 stage_progress=100.00%
Oct 10 18:09:17 start_op-reth.sh[546973]: 2024-10-10T18:09:17.072544Z  INFO Status connected_peers=94 stage=SenderRecovery checkpoint=20893452 target=0 stage_progress=100.00%
Oct 10 18:09:42 start_op-reth.sh[546973]: 2024-10-10T18:09:42.072219Z  INFO Status connected_peers=94 stage=SenderRecovery checkpoint=20893452 target=0 stage_progress=100.00%
Oct 10 18:10:07 start_op-reth.sh[546973]: 2024-10-10T18:10:07.072221Z  INFO Status connected_peers=94 stage=SenderRecovery checkpoint=20893452 target=0 stage_progress=100.00%

@Rjected
Copy link
Member

Rjected commented Oct 10, 2024

This is pretty weird, that error is actually a failure in the execution stage. Just as an update I don't have any leads on this so far, and have not been able to reproduce this. I don't know whether or not this has to do with hildr failing, or op-node, or op-reth, or some interaction between the two

@DaveWK
Copy link
Author

DaveWK commented Oct 10, 2024

I am attempting to sync from scratch execution-layer experimental, with op-node now to attempt to rule out hildr breaking something, if/when it does ill post the logs.. is there a way to look up those expected vs actual to see if either of them are correct?

Wondering also if the genesis block(s) hashes should be the lowest/floor values for l2_finalized and l2_safe to avoid the null cases

@Rjected
Copy link
Member

Rjected commented Oct 10, 2024

If you try from main we recently did fix some bugs on our side w.r.t zero finalized / safe hashes, which should prevent large walkback on restart

@DaveWK
Copy link
Author

DaveWK commented Oct 10, 2024

Cool, my previous run when I got that most recent error was at d027b7b but am building maxperf-op at 1ba631b as I type, so I'll attempt from that commit as I see the last few pr's seem rather relevant (thx!). I'll use execution-layer with op-node this time; if this sync works ill do the same with hildr just to report any findings

@DaveWK
Copy link
Author

DaveWK commented Oct 10, 2024

Currently passed the previous failure; going to be in the execution stage for a while:

Oct 10 20:25:33 start_op-reth.sh[582550]: 2024-10-10T20:25:33.092541Z  INFO Committed stage progress pipeline_stages=3/14 stage=SenderRecovery checkpoint=20857420 target=20897633 stage_progress=99.29% stage_eta=16s
Oct 10 20:25:33 start_op-reth.sh[582550]: 2024-10-10T20:25:33.150788Z  INFO Preparing stage pipeline_stages=3/14 stage=SenderRecovery checkpoint=20857420 target=20897633
Oct 10 20:25:33 start_op-reth.sh[582550]: 2024-10-10T20:25:33.150821Z  INFO Executing stage pipeline_stages=3/14 stage=SenderRecovery checkpoint=20857420 target=20897633 stage_eta=16s
Oct 10 20:25:33 start_op-reth.sh[582550]: 2024-10-10T20:25:33.153181Z  INFO Recovering senders tx_range=800006897..805006939
Oct 10 20:25:39 start_op-reth.sh[582550]: 2024-10-10T20:25:39.493132Z  INFO Status connected_peers=56 stage=SenderRecovery checkpoint=20857420 target=20897633 stage_progress=99.29% stage_eta=10s
Oct 10 20:25:48 start_op-reth.sh[582550]: 2024-10-10T20:25:48.030773Z  INFO Committed stage progress pipeline_stages=3/14 stage=SenderRecovery checkpoint=20892816 target=20897633 stage_progress=99.91% stage_eta=2s
Oct 10 20:25:48 start_op-reth.sh[582550]: 2024-10-10T20:25:48.037821Z  INFO Preparing stage pipeline_stages=3/14 stage=SenderRecovery checkpoint=20892816 target=20897633
Oct 10 20:25:48 start_op-reth.sh[582550]: 2024-10-10T20:25:48.037861Z  INFO Executing stage pipeline_stages=3/14 stage=SenderRecovery checkpoint=20892816 target=20897633 stage_eta=1s
Oct 10 20:25:48 start_op-reth.sh[582550]: 2024-10-10T20:25:48.037862Z  INFO Recovering senders tx_range=805006939..805678454
Oct 10 20:25:50 start_op-reth.sh[582550]: 2024-10-10T20:25:50.045196Z  INFO Finished stage pipeline_stages=3/14 stage=SenderRecovery checkpoint=20897633 target=20897633 stage_progress=100.00% stage_eta=unknown
Oct 10 20:25:50 start_op-reth.sh[582550]: 2024-10-10T20:25:50.065460Z  INFO Preparing stage pipeline_stages=4/14 stage=Execution checkpoint=0 target=20897633
Oct 10 20:25:50 start_op-reth.sh[582550]: 2024-10-10T20:25:50.068097Z  INFO Executing stage pipeline_stages=4/14 stage=Execution checkpoint=0 target=20897633
Oct 10 20:26:04 start_op-reth.sh[582550]: 2024-10-10T20:26:04.493481Z  INFO Status connected_peers=56 stage=Execution checkpoint=0 target=20897633
Oct 10 20:26:29 start_op-reth.sh[582550]: 2024-10-10T20:26:29.492891Z  INFO Status connected_peers=56 stage=Execution checkpoint=0 target=20897633
Oct 10 20:26:41 start_op-reth.sh[582550]: 2024-10-10T20:26:41.375316Z  INFO Executed block range start=1 end=440547 throughput="3.80 Ggas/second"
Oct 10 20:26:42 start_op-reth.sh[582550]: 2024-10-10T20:26:42.852367Z  INFO Committed stage progress pipeline_stages=4/14 stage=Execution checkpoint=500001 target=20897633 stage_progress=0.01%
Oct 10 20:26:42 start_op-reth.sh[582550]: 2024-10-10T20:26:42.857353Z  INFO Preparing stage pipeline_stages=4/14 stage=Execution checkpoint=500001 target=20897633
Oct 10 20:26:42 start_op-reth.sh[582550]: 2024-10-10T20:26:42.857372Z  INFO Executing stage pipeline_stages=4/14 stage=Execution checkpoint=500001 target=20897633
Oct 10 20:26:52 start_op-reth.sh[582550]: 2024-10-10T20:26:52.857544Z  INFO Executed block range start=500002 end=912514 throughput="3.89 Ggas/second"

current status:

2024-10-10T20:35:14.498451Z INFO Status connected_peers=75 stage=Execution checkpoint=2000004 target=20897633 stage_progress=0.18%

@BowTiedDevil
Copy link

BowTiedDevil commented Oct 12, 2024

This error has occurred again on v1.1.0. Here is roughly a minute of logs from the container before it crashes:

Oct 12 04:54:32 dev base_reth[1716608]: 2024-10-12T11:54:32.709941Z  INFO Canonical chain committed number=20972362 hash=0xc3727ca7e9154d931ebfdc57025a3dd3038db6bf47f1404f7a231bd9029aa143 elapsed=213.925µs
Oct 12 04:54:33 dev base_reth[1716608]: 2024-10-12T11:54:33.895877Z  INFO Block added to canonical chain number=20972363 hash=0x12c53b218ab6765712f48f543b0c00963d1bfa773ceb47c477f9d08a58bb93e3 peers=45 txs=100 gas=16.77 Mgas gas_throughput=50.91 Mgas/second full=10.7% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=329.306847ms
Oct 12 04:54:33 dev base_reth[1716608]: 2024-10-12T11:54:33.897116Z  INFO Canonical chain committed number=20972363 hash=0x12c53b218ab6765712f48f543b0c00963d1bfa773ceb47c477f9d08a58bb93e3 elapsed=146.713µs
Oct 12 04:54:36 dev base_reth[1716608]: 2024-10-12T11:54:36.145189Z  INFO Block added to canonical chain number=20972364 hash=0x16b06c8164245ef1798b142963d9875cb6b706ad192d1f422d6f52f919b05f0f peers=45 txs=113 gas=25.03 Mgas gas_throughput=149.09 Mgas/second full=16.0% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=167.897936ms
Oct 12 04:54:36 dev base_reth[1716608]: 2024-10-12T11:54:36.145930Z  INFO Canonical chain committed number=20972364 hash=0x16b06c8164245ef1798b142963d9875cb6b706ad192d1f422d6f52f919b05f0f elapsed=245.436µs
Oct 12 04:54:37 dev base_reth[1716608]: 2024-10-12T11:54:37.814451Z  INFO Block added to canonical chain number=20972365 hash=0xca991c32c8f66a7e2b41134dfe24245fb52b293a262b7f9905d59c049b07c369 peers=45 txs=102 gas=19.48 Mgas gas_throughput=167.33 Mgas/second full=12.5% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=116.424525ms
Oct 12 04:54:37 dev base_reth[1716608]: 2024-10-12T11:54:37.814995Z  INFO Canonical chain committed number=20972365 hash=0xca991c32c8f66a7e2b41134dfe24245fb52b293a262b7f9905d59c049b07c369 elapsed=150.423µs
Oct 12 04:54:40 dev base_reth[1716608]: 2024-10-12T11:54:40.321024Z  INFO Block added to canonical chain number=20972366 hash=0x784e0b72b3d827912a898947a7992a023c07943be86747e6a05a6b9f3827b0a8 peers=45 txs=108 gas=19.38 Mgas gas_throughput=144.70 Mgas/second full=12.4% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=133.916614ms
Oct 12 04:54:40 dev base_reth[1716608]: 2024-10-12T11:54:40.321606Z  INFO Canonical chain committed number=20972366 hash=0x784e0b72b3d827912a898947a7992a023c07943be86747e6a05a6b9f3827b0a8 elapsed=211.435µs
Oct 12 04:54:42 dev base_reth[1716608]: 2024-10-12T11:54:42.460456Z  INFO Block added to canonical chain number=20972367 hash=0xf6b5aaea23bf37bd685ca836bd8c1a0b1333c18fba9fbbb25145c671191d65e5 peers=45 txs=141 gas=35.58 Mgas gas_throughput=181.75 Mgas/second full=22.8% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=195.753083ms
Oct 12 04:54:42 dev base_reth[1716608]: 2024-10-12T11:54:42.461100Z  INFO Canonical chain committed number=20972367 hash=0xf6b5aaea23bf37bd685ca836bd8c1a0b1333c18fba9fbbb25145c671191d65e5 elapsed=244.176µs
Oct 12 04:54:44 dev base_reth[1716608]: 2024-10-12T11:54:44.253881Z  INFO Block added to canonical chain number=20972368 hash=0x1362900a1b31154cc20952f093b582732069b8ace8a55865264a0c7131035467 peers=45 txs=127 gas=29.40 Mgas gas_throughput=159.46 Mgas/second full=18.8% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=184.36243ms
Oct 12 04:54:44 dev base_reth[1716608]: 2024-10-12T11:54:44.254582Z  INFO Canonical chain committed number=20972368 hash=0x1362900a1b31154cc20952f093b582732069b8ace8a55865264a0c7131035467 elapsed=261.087µs
Oct 12 04:54:46 dev base_reth[1716608]: 2024-10-12T11:54:46.137629Z  INFO Block added to canonical chain number=20972369 hash=0x788c8d7cb63d00c971d0b4a3cf761e57ebf6ddfae9baf1ca0121cc0b47c90725 peers=45 txs=127 gas=27.13 Mgas gas_throughput=114.64 Mgas/second full=17.4% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=236.61151ms
Oct 12 04:54:46 dev base_reth[1716608]: 2024-10-12T11:54:46.138319Z  INFO Canonical chain committed number=20972369 hash=0x788c8d7cb63d00c971d0b4a3cf761e57ebf6ddfae9baf1ca0121cc0b47c90725 elapsed=247.696µs
Oct 12 04:54:48 dev base_reth[1716608]: 2024-10-12T11:54:48.214884Z  INFO Block added to canonical chain number=20972370 hash=0x950332dc8efb592cc4bdec0ecf3599e04c5c347e5012393563f5804c87ff3d3e peers=45 txs=129 gas=28.18 Mgas gas_throughput=146.60 Mgas/second full=18.1% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=192.246619ms
Oct 12 04:54:48 dev base_reth[1716608]: 2024-10-12T11:54:48.215705Z  INFO Canonical chain committed number=20972370 hash=0x950332dc8efb592cc4bdec0ecf3599e04c5c347e5012393563f5804c87ff3d3e elapsed=337.238µs
Oct 12 04:54:49 dev base_reth[1716608]: 2024-10-12T11:54:49.908305Z  INFO Block added to canonical chain number=20972371 hash=0x62aecd022100f4d6d5a2aa68016dc75ab07a669e8553d550d13a6431549c18f4 peers=45 txs=96 gas=16.10 Mgas gas_throughput=93.49 Mgas/second full=10.3% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=172.176928ms
Oct 12 04:54:49 dev base_reth[1716608]: 2024-10-12T11:54:49.909029Z  INFO Canonical chain committed number=20972371 hash=0x62aecd022100f4d6d5a2aa68016dc75ab07a669e8553d550d13a6431549c18f4 elapsed=240.415µs
Oct 12 04:54:52 dev base_reth[1716608]: 2024-10-12T11:54:52.326794Z  INFO Block added to canonical chain number=20972372 hash=0x52580bd9019f3be98cff2c962908bb6b46a23fe7dbbe4f42d9031e28415072ae peers=45 txs=166 gas=28.19 Mgas gas_throughput=140.34 Mgas/second full=18.1% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=200.837744ms
Oct 12 04:54:52 dev base_reth[1716608]: 2024-10-12T11:54:52.327420Z  INFO Canonical chain committed number=20972372 hash=0x52580bd9019f3be98cff2c962908bb6b46a23fe7dbbe4f42d9031e28415072ae elapsed=230.166µs
Oct 12 04:54:53 dev base_reth[1716608]: 2024-10-12T11:54:53.867657Z  INFO Block added to canonical chain number=20972373 hash=0x8653434917d399bfbd538d51e7d6b12f13c20925db771f7e589535da14f7a38f peers=45 txs=96 gas=18.23 Mgas gas_throughput=113.79 Mgas/second full=11.7% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=160.199203ms
Oct 12 04:54:53 dev base_reth[1716608]: 2024-10-12T11:54:53.868283Z  INFO Canonical chain committed number=20972373 hash=0x8653434917d399bfbd538d51e7d6b12f13c20925db771f7e589535da14f7a38f elapsed=203.505µs
Oct 12 04:54:56 dev base_reth[1716608]: 2024-10-12T11:54:56.267411Z  INFO Block added to canonical chain number=20972374 hash=0x3f717b5fac845c7b7ad6f27a20f6ff2d437538c400b84d70bf9f900da4061f2a peers=45 txs=132 gas=26.33 Mgas gas_throughput=162.23 Mgas/second full=16.9% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=162.332203ms
Oct 12 04:54:56 dev base_reth[1716608]: 2024-10-12T11:54:56.268229Z  INFO Canonical chain committed number=20972374 hash=0x3f717b5fac845c7b7ad6f27a20f6ff2d437538c400b84d70bf9f900da4061f2a elapsed=262.317µs
Oct 12 04:54:58 dev base_reth[1716608]: 2024-10-12T11:54:58.217033Z  INFO Block added to canonical chain number=20972375 hash=0xa061f1b0c05e9ddbe2ebba83a01bf0ed554a1d8338b65a1698435eb188700dc4 peers=45 txs=105 gas=19.63 Mgas gas_throughput=122.65 Mgas/second full=12.6% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=160.041669ms
Oct 12 04:54:58 dev base_reth[1716608]: 2024-10-12T11:54:58.217690Z  INFO Canonical chain committed number=20972375 hash=0xa061f1b0c05e9ddbe2ebba83a01bf0ed554a1d8338b65a1698435eb188700dc4 elapsed=191.174µs
Oct 12 04:55:00 dev base_reth[1716608]: 2024-10-12T11:55:00.255795Z  INFO Block added to canonical chain number=20972376 hash=0xd7f3ce51ae6f9e629cce17edb7668639539f3b6cc917941d626ed7a48f77b56e peers=45 txs=136 gas=26.10 Mgas gas_throughput=145.91 Mgas/second full=16.7% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=178.865699ms
Oct 12 04:55:00 dev base_reth[1716608]: 2024-10-12T11:55:00.256570Z  INFO Canonical chain committed number=20972376 hash=0xd7f3ce51ae6f9e629cce17edb7668639539f3b6cc917941d626ed7a48f77b56e elapsed=311.148µs
Oct 12 04:55:02 dev base_reth[1716608]: 2024-10-12T11:55:02.334940Z  INFO Block added to canonical chain number=20972377 hash=0xbbea73c5d708602812d4440002c704c79a4f2d61a3b39f3a3c94449c80ff9949 peers=45 txs=105 gas=24.49 Mgas gas_throughput=168.07 Mgas/second full=15.7% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=145.700465ms
Oct 12 04:55:02 dev base_reth[1716608]: 2024-10-12T11:55:02.335691Z  INFO Canonical chain committed number=20972377 hash=0xbbea73c5d708602812d4440002c704c79a4f2d61a3b39f3a3c94449c80ff9949 elapsed=211.195µs
Oct 12 04:55:04 dev base_reth[1716608]: 2024-10-12T11:55:04.242692Z  INFO Block added to canonical chain number=20972378 hash=0xd325b15753cdcf10f94d62e938bb55521b2a637fab553fd9c2631f84286fa4ec peers=45 txs=113 gas=23.03 Mgas gas_throughput=137.71 Mgas/second full=14.8% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=167.267561ms
Oct 12 04:55:04 dev base_reth[1716608]: 2024-10-12T11:55:04.243337Z  INFO Canonical chain committed number=20972378 hash=0xd325b15753cdcf10f94d62e938bb55521b2a637fab553fd9c2631f84286fa4ec elapsed=238.386µs
Oct 12 04:55:06 dev base_reth[1716608]: 2024-10-12T11:55:06.047686Z  INFO Block added to canonical chain number=20972379 hash=0x143b84c1a6341e1e45ddd69f9e8afad981325cd6ddd5f22a5cde6295fc388e2c peers=45 txs=128 gas=20.61 Mgas gas_throughput=118.42 Mgas/second full=13.2% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=174.032323ms
Oct 12 04:55:06 dev base_reth[1716608]: 2024-10-12T11:55:06.048414Z  INFO Canonical chain committed number=20972379 hash=0x143b84c1a6341e1e45ddd69f9e8afad981325cd6ddd5f22a5cde6295fc388e2c elapsed=324.707µs
Oct 12 04:55:08 dev base_reth[1716608]: 2024-10-12T11:55:08.293477Z  INFO Block added to canonical chain number=20972380 hash=0x7ce44410fa18a8f47ebab36a776ef3ede0a3dc2ee1fa3a801d1c16133d81c9e7 peers=45 txs=136 gas=22.95 Mgas gas_throughput=129.07 Mgas/second full=14.7% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=177.785273ms
Oct 12 04:55:08 dev base_reth[1716608]: 2024-10-12T11:55:08.294130Z  INFO Canonical chain committed number=20972380 hash=0x7ce44410fa18a8f47ebab36a776ef3ede0a3dc2ee1fa3a801d1c16133d81c9e7 elapsed=238.416µs
Oct 12 04:55:10 dev base_reth[1716608]: 2024-10-12T11:55:10.201344Z  INFO Block added to canonical chain number=20972381 hash=0xcffdbe74d12ddcbf60f2e7f1a6480c8cbea08610e1919793772ea0563d9670bb peers=45 txs=123 gas=17.41 Mgas gas_throughput=79.36 Mgas/second full=11.2% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=219.410488ms
Oct 12 04:55:10 dev base_reth[1716608]: 2024-10-12T11:55:10.202093Z  INFO Canonical chain committed number=20972381 hash=0xcffdbe74d12ddcbf60f2e7f1a6480c8cbea08610e1919793772ea0563d9670bb elapsed=177.835µs
Oct 12 04:55:12 dev base_reth[1716608]: 2024-10-12T11:55:12.313759Z  INFO Block added to canonical chain number=20972382 hash=0x000df2720cc01be74b31b3d6d03f7794e141b23f422ec86feabd4e7a0c9e456b peers=45 txs=122 gas=20.83 Mgas gas_throughput=124.61 Mgas/second full=13.4% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=167.135808ms
Oct 12 04:55:12 dev base_reth[1716608]: 2024-10-12T11:55:12.314534Z  INFO Canonical chain committed number=20972382 hash=0x000df2720cc01be74b31b3d6d03f7794e141b23f422ec86feabd4e7a0c9e456b elapsed=208.335µs
Oct 12 04:55:14 dev base_reth[1716608]: 2024-10-12T11:55:14.133802Z  INFO Block added to canonical chain number=20972383 hash=0x441ef15639a32376975e4d025ed79d32ad7d43119c1804b1517a90d4bdaa584f peers=45 txs=113 gas=17.11 Mgas gas_throughput=110.75 Mgas/second full=11.0% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=154.491936ms
Oct 12 04:55:14 dev base_reth[1716608]: 2024-10-12T11:55:14.134473Z  INFO Canonical chain committed number=20972383 hash=0x441ef15639a32376975e4d025ed79d32ad7d43119c1804b1517a90d4bdaa584f elapsed=196.015µs
Oct 12 04:55:15 dev base_reth[1716608]: 2024-10-12T11:55:15.961224Z  INFO Block added to canonical chain number=20972384 hash=0x420fec367407bcfaca2140bfdb153542e6fbe03b7b8ee4aedd57b295582199aa peers=45 txs=143 gas=24.92 Mgas gas_throughput=125.61 Mgas/second full=16.0% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=198.417796ms
Oct 12 04:55:15 dev base_reth[1716608]: 2024-10-12T11:55:15.962038Z  INFO Canonical chain committed number=20972384 hash=0x420fec367407bcfaca2140bfdb153542e6fbe03b7b8ee4aedd57b295582199aa elapsed=254.216µs
Oct 12 04:55:18 dev base_reth[1716608]: 2024-10-12T11:55:18.150283Z  INFO Block added to canonical chain number=20972385 hash=0x75fadc9b426a04d5a0ac0a93f7e2eb176eb8a4b08b7fe8eb9076c0246f3f1e53 peers=45 txs=122 gas=19.10 Mgas gas_throughput=115.28 Mgas/second full=12.2% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=165.716455ms
Oct 12 04:55:18 dev base_reth[1716608]: 2024-10-12T11:55:18.150969Z  INFO Canonical chain committed number=20972385 hash=0x75fadc9b426a04d5a0ac0a93f7e2eb176eb8a4b08b7fe8eb9076c0246f3f1e53 elapsed=207.995µs
Oct 12 04:55:20 dev base_reth[1716608]: 2024-10-12T11:55:20.197467Z  INFO Block added to canonical chain number=20972386 hash=0x3ea93cabe598dce17569d59882557e7063a9fe41a6ac7de335e3ae900e4c96cc peers=45 txs=119 gas=19.60 Mgas gas_throughput=142.24 Mgas/second full=12.6% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=137.794107ms
Oct 12 04:55:20 dev base_reth[1716608]: 2024-10-12T11:55:20.198040Z  INFO Canonical chain committed number=20972386 hash=0x3ea93cabe598dce17569d59882557e7063a9fe41a6ac7de335e3ae900e4c96cc elapsed=180.414µs
Oct 12 04:55:21 dev base_reth[1716608]: 2024-10-12T11:55:21.925717Z  INFO Block added to canonical chain number=20972387 hash=0xa75c12289c4ba16dac2ad91216b3b7fcdae0e864ee0105c754fca1fdcae6e188 peers=45 txs=130 gas=19.84 Mgas gas_throughput=150.50 Mgas/second full=12.7% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=131.844304ms
Oct 12 04:55:21 dev base_reth[1716608]: 2024-10-12T11:55:21.926367Z  INFO Canonical chain committed number=20972387 hash=0xa75c12289c4ba16dac2ad91216b3b7fcdae0e864ee0105c754fca1fdcae6e188 elapsed=200.224µs
Oct 12 04:55:24 dev base_reth[1716608]: 2024-10-12T11:55:24.262715Z  INFO Block added to canonical chain number=20972388 hash=0x875a12bb441b56cc39e988119ef0e99efa2984b65f15be6b120c0cf2ab5d7349 peers=45 txs=116 gas=16.52 Mgas gas_throughput=86.61 Mgas/second full=10.6% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=190.730992ms
Oct 12 04:55:24 dev base_reth[1716608]: 2024-10-12T11:55:24.263372Z  INFO Canonical chain committed number=20972388 hash=0x875a12bb441b56cc39e988119ef0e99efa2984b65f15be6b120c0cf2ab5d7349 elapsed=237.856µs
Oct 12 04:55:26 dev base_reth[1716608]: 2024-10-12T11:55:26.036306Z  INFO Block added to canonical chain number=20972389 hash=0x6ff433fbcd5bf25a38b21e26b689a0f93b9bd9040ca2b375838d86f2ff489fbc peers=45 txs=141 gas=35.36 Mgas gas_throughput=198.73 Mgas/second full=22.7% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=177.925476ms
Oct 12 04:55:26 dev base_reth[1716608]: 2024-10-12T11:55:26.036958Z  INFO Canonical chain committed number=20972389 hash=0x6ff433fbcd5bf25a38b21e26b689a0f93b9bd9040ca2b375838d86f2ff489fbc elapsed=236.875µs
Oct 12 04:55:27 dev base_reth[1716608]: 2024-10-12T11:55:27.895430Z  INFO Block added to canonical chain number=20972390 hash=0xeeafb0a95ec2b89b4e14ba16cda0044a105698fbe8b1b055b9966feb408d2ee3 peers=45 txs=103 gas=23.58 Mgas gas_throughput=169.65 Mgas/second full=15.1% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=139.002805ms
Oct 12 04:55:27 dev base_reth[1716608]: 2024-10-12T11:55:27.896045Z  INFO Canonical chain committed number=20972390 hash=0xeeafb0a95ec2b89b4e14ba16cda0044a105698fbe8b1b055b9966feb408d2ee3 elapsed=185.755µs
Oct 12 04:55:30 dev base_reth[1716608]: 2024-10-12T11:55:30.526957Z  INFO Block added to canonical chain number=20972391 hash=0xe51ae6947e2c6c3ada2d479881524e9450119c51028a6476a216b490b3e3f2ec peers=45 txs=138 gas=22.98 Mgas gas_throughput=162.18 Mgas/second full=14.7% base_fee=0.00gwei blobs=0 excess_blobs=0 elapsed=141.72075ms
Oct 12 04:55:30 dev base_reth[1716608]: 2024-10-12T11:55:30.527692Z  INFO Canonical chain committed number=20972391 hash=0xe51ae6947e2c6c3ada2d479881524e9450119c51028a6476a216b490b3e3f2ec elapsed=195.094µs
Oct 12 04:55:32 dev base_reth[1716608]: thread 'reth-rayon-8' panicked at /cargo/registry/src/index.crates.io-6f17d22bba15001f/alloy-trie-0.6.0/src/hash_builder/mod.rs:116:9:
Oct 12 04:55:32 dev base_reth[1716608]: add_leaf key Nibbles("05030e020a090203020406070d07010f09080f0108070f03010808010c0007000403020d00030a07030901030d0c04010f09090701030f0703060a0a0a060503") self.key Nibbles("060e010504000107010b060c000c0906000b07010a070002000d090f06000007070f060a0f0903010a080b0b0f0509000d0a000202030d0a0c0f07050c070a0f")
Oct 12 04:55:32 dev base_reth[1716608]: stack backtrace:
Oct 12 04:55:32 dev base_reth[1716608]: note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
Oct 12 04:55:32 dev base_reth[1716608]: Rayon: detected unexpected panic; aborting
Oct 12 04:56:12 dev systemd-coredump[2026204]: Process 1716610 (op-reth) of user 1000 dumped core.
                                               
                                               Stack trace of thread 37:
                                               #0  0x00007f6fbfb74a24 n/a (/usr/lib/x86_64-linux-gnu/libc.so.6 + 0x174a24)
                                               #1  0x00007f6fbff37a0f n/a (/usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 + 0xea0f)
                                               ELF object binary architecture: AMD x86-64
Oct 12 04:56:16 dev podman[2026304]: 2024-10-12 04:56:16.059663396 -0700 PDT m=+0.019057317 container died 90cadde10b4dc737326ff6cc8f9f5b95f3ae47d58ee18c8f35b537c94558c5b0 (image=ghcr.io/paradigmxyz/op-reth:latest, name=base_reth, org.opencontainers.image.source=https://github.com/paradigmxyz/reth, org.opencontainers.image.version=22.04, PODMAN_SYSTEMD_UNIT=base_reth.service, io.containers.autoupdate=registry, org.opencontainers.image.licenses=MIT OR Apache-2.0, org.opencontainers.image.ref.name=ubuntu)
Oct 12 04:56:16 dev podman[2026304]: 2024-10-12 04:56:16.090058673 -0700 PDT m=+0.049452604 container remove 90cadde10b4dc737326ff6cc8f9f5b95f3ae47d58ee18c8f35b537c94558c5b0 (image=ghcr.io/paradigmxyz/op-reth:latest, name=base_reth, pod_id=57a00d14d0f4fb4cb9956c61f0dc81f1928b201036fc4aaa45a5a2ae169eb374, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/paradigmxyz/reth, org.opencontainers.image.version=22.04, PODMAN_SYSTEMD_UNIT=base_reth.service, io.containers.autoupdate=registry, org.opencontainers.image.licenses=MIT OR Apache-2.0)
Oct 12 04:56:16 dev systemd[2808]: base_reth.service: Main process exited, code=exited, status=139/n/a
Oct 12 04:56:16 dev systemd[2808]: base_reth.service: Failed with result 'exit-code'.
Oct 12 04:56:16 dev systemd[2808]: base_reth.service: Consumed 1h 37min 29.983s CPU time.

And here are the logs from op-node prior to the crash and for about 10s following:

Oct 12 04:55:00 dev base_rollup[1298011]: t=2024-10-12T11:55:00+0000 lvl=info msg="Received signed execution payload from p2p" id=0xd7f3ce51ae6f9e629cce17edb7668639539f3b6cc917941d626ed7a48f77b56e:20972376 peer=16Uiu2HAmTUiRQw5PqmBqAy2TsgrLGkNvNkEnysrWEEpTZ1tDCFtd txs=136
Oct 12 04:55:00 dev base_rollup[1298011]: t=2024-10-12T11:55:00+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0xd7f3ce51ae6f9e629cce17edb7668639539f3b6cc917941d626ed7a48f77b56e:20972376
Oct 12 04:55:00 dev base_rollup[1298011]: t=2024-10-12T11:55:00+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc28ea708cfe2df8a45e9aabdec3a18741eb84213609cbc9de4aabdfcd9cc0277:20971741 l2_safe=0x2a7c3b124cea40de613f2539705626069ac9526794fd064053d6e5c5f57e4aa6:20972321 l2_pending_safe=0x2a7c3b124cea40de613f2539705626069ac9526794fd064053d6e5c5f57e4aa6:20972321 l2_unsafe=0xd7f3ce51ae6f9e629cce17edb7668639539f3b6cc917941d626ed7a48f77b56e:20972376 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728734099
Oct 12 04:55:00 dev base_rollup[1298011]: t=2024-10-12T11:55:00+0000 lvl=info msg="successfully processed payload" ref=0xd7f3ce51ae6f9e629cce17edb7668639539f3b6cc917941d626ed7a48f77b56e:20972376 txs=136
Oct 12 04:55:00 dev base_rollup[1298011]: t=2024-10-12T11:55:00+0000 lvl=info msg="connected to peer" peer=16Uiu2HAm6DKU1sHoEzxwtQWXHMp917wbwYVBX8Ka6ddkTwM7Z2EQ addr=/ip4/162.19.234.227/tcp/37010
Oct 12 04:55:00 dev base_rollup[1298011]: t=2024-10-12T11:55:00+0000 lvl=info msg="Starting P2P sync client event loop" peer=16Uiu2HAm6DKU1sHoEzxwtQWXHMp917wbwYVBX8Ka6ddkTwM7Z2EQ
Oct 12 04:55:01 dev base_rollup[1298011]: t=2024-10-12T11:55:01+0000 lvl=info msg="disconnected from peer" peer=16Uiu2HAm6DKU1sHoEzxwtQWXHMp917wbwYVBX8Ka6ddkTwM7Z2EQ addr=/ip4/162.19.234.227/tcp/37010
Oct 12 04:55:01 dev base_rollup[1298011]: t=2024-10-12T11:55:01+0000 lvl=info msg="Advancing bq origin" origin=0xcc87a1c45fa33b903181dd4d0565ccabdd6d1b67654cb13187a590736c34d19b:20949356 originBehind=false
Oct 12 04:55:02 dev base_rollup[1298011]: t=2024-10-12T11:55:02+0000 lvl=info msg="Received signed execution payload from p2p" id=0xbbea73c5d708602812d4440002c704c79a4f2d61a3b39f3a3c94449c80ff9949:20972377 peer=16Uiu2HAm1np7q4Q7msoWdWcfG4aAhnwEAZBrHyDFWmkk3NdX4aoz txs=105
Oct 12 04:55:02 dev base_rollup[1298011]: t=2024-10-12T11:55:02+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0xbbea73c5d708602812d4440002c704c79a4f2d61a3b39f3a3c94449c80ff9949:20972377
Oct 12 04:55:02 dev base_rollup[1298011]: t=2024-10-12T11:55:02+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc28ea708cfe2df8a45e9aabdec3a18741eb84213609cbc9de4aabdfcd9cc0277:20971741 l2_safe=0x2a7c3b124cea40de613f2539705626069ac9526794fd064053d6e5c5f57e4aa6:20972321 l2_pending_safe=0x2a7c3b124cea40de613f2539705626069ac9526794fd064053d6e5c5f57e4aa6:20972321 l2_unsafe=0xbbea73c5d708602812d4440002c704c79a4f2d61a3b39f3a3c94449c80ff9949:20972377 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728734101
Oct 12 04:55:02 dev base_rollup[1298011]: t=2024-10-12T11:55:02+0000 lvl=info msg="successfully processed payload" ref=0xbbea73c5d708602812d4440002c704c79a4f2d61a3b39f3a3c94449c80ff9949:20972377 txs=105
Oct 12 04:55:04 dev base_rollup[1298011]: t=2024-10-12T11:55:04+0000 lvl=info msg="Received signed execution payload from p2p" id=0xd325b15753cdcf10f94d62e938bb55521b2a637fab553fd9c2631f84286fa4ec:20972378 peer=16Uiu2HAmAvENHM6qLrmgyr1acFhWKT4AAoTRibusb5wHe3FXvhNF txs=113
Oct 12 04:55:04 dev base_rollup[1298011]: t=2024-10-12T11:55:04+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0xd325b15753cdcf10f94d62e938bb55521b2a637fab553fd9c2631f84286fa4ec:20972378
Oct 12 04:55:04 dev base_rollup[1298011]: t=2024-10-12T11:55:04+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc28ea708cfe2df8a45e9aabdec3a18741eb84213609cbc9de4aabdfcd9cc0277:20971741 l2_safe=0x2a7c3b124cea40de613f2539705626069ac9526794fd064053d6e5c5f57e4aa6:20972321 l2_pending_safe=0x2a7c3b124cea40de613f2539705626069ac9526794fd064053d6e5c5f57e4aa6:20972321 l2_unsafe=0xd325b15753cdcf10f94d62e938bb55521b2a637fab553fd9c2631f84286fa4ec:20972378 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728734103
Oct 12 04:55:04 dev base_rollup[1298011]: t=2024-10-12T11:55:04+0000 lvl=info msg="successfully processed payload" ref=0xd325b15753cdcf10f94d62e938bb55521b2a637fab553fd9c2631f84286fa4ec:20972378 txs=113
Oct 12 04:55:05 dev base_rollup[1298011]: t=2024-10-12T11:55:05+0000 lvl=info msg="Received signed execution payload from p2p" id=0x143b84c1a6341e1e45ddd69f9e8afad981325cd6ddd5f22a5cde6295fc388e2c:20972379 peer=16Uiu2HAkvVbewYytX4yCaHyC6fMSE4aqsvrnjjAEhMosa61eZiT1 txs=128
Oct 12 04:55:05 dev base_rollup[1298011]: t=2024-10-12T11:55:05+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x143b84c1a6341e1e45ddd69f9e8afad981325cd6ddd5f22a5cde6295fc388e2c:20972379
Oct 12 04:55:06 dev base_rollup[1298011]: t=2024-10-12T11:55:06+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc28ea708cfe2df8a45e9aabdec3a18741eb84213609cbc9de4aabdfcd9cc0277:20971741 l2_safe=0x2a7c3b124cea40de613f2539705626069ac9526794fd064053d6e5c5f57e4aa6:20972321 l2_pending_safe=0x2a7c3b124cea40de613f2539705626069ac9526794fd064053d6e5c5f57e4aa6:20972321 l2_unsafe=0x143b84c1a6341e1e45ddd69f9e8afad981325cd6ddd5f22a5cde6295fc388e2c:20972379 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728734105
Oct 12 04:55:06 dev base_rollup[1298011]: t=2024-10-12T11:55:06+0000 lvl=info msg="successfully processed payload" ref=0x143b84c1a6341e1e45ddd69f9e8afad981325cd6ddd5f22a5cde6295fc388e2c:20972379 txs=128
Oct 12 04:55:08 dev base_rollup[1298011]: t=2024-10-12T11:55:08+0000 lvl=info msg="Received signed execution payload from p2p" id=0x7ce44410fa18a8f47ebab36a776ef3ede0a3dc2ee1fa3a801d1c16133d81c9e7:20972380 peer=16Uiu2HAmSYvBi6hczyhZaM41q2bjqxPUnquCxm1CBX4MKahMezC4 txs=136
Oct 12 04:55:08 dev base_rollup[1298011]: t=2024-10-12T11:55:08+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x7ce44410fa18a8f47ebab36a776ef3ede0a3dc2ee1fa3a801d1c16133d81c9e7:20972380
Oct 12 04:55:08 dev base_rollup[1298011]: t=2024-10-12T11:55:08+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc28ea708cfe2df8a45e9aabdec3a18741eb84213609cbc9de4aabdfcd9cc0277:20971741 l2_safe=0x2a7c3b124cea40de613f2539705626069ac9526794fd064053d6e5c5f57e4aa6:20972321 l2_pending_safe=0x2a7c3b124cea40de613f2539705626069ac9526794fd064053d6e5c5f57e4aa6:20972321 l2_unsafe=0x7ce44410fa18a8f47ebab36a776ef3ede0a3dc2ee1fa3a801d1c16133d81c9e7:20972380 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728734107
Oct 12 04:55:08 dev base_rollup[1298011]: t=2024-10-12T11:55:08+0000 lvl=info msg="successfully processed payload" ref=0x7ce44410fa18a8f47ebab36a776ef3ede0a3dc2ee1fa3a801d1c16133d81c9e7:20972380 txs=136
Oct 12 04:55:09 dev base_rollup[1298011]: t=2024-10-12T11:55:09+0000 lvl=info msg="Received signed execution payload from p2p" id=0xcffdbe74d12ddcbf60f2e7f1a6480c8cbea08610e1919793772ea0563d9670bb:20972381 peer=16Uiu2HAmG6c7fyVT2tfhN4uKgwQDtEDJ1D55dUzeJAh3JdA9GyrY txs=123
Oct 12 04:55:09 dev base_rollup[1298011]: t=2024-10-12T11:55:09+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0xcffdbe74d12ddcbf60f2e7f1a6480c8cbea08610e1919793772ea0563d9670bb:20972381
Oct 12 04:55:10 dev base_rollup[1298011]: t=2024-10-12T11:55:10+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc28ea708cfe2df8a45e9aabdec3a18741eb84213609cbc9de4aabdfcd9cc0277:20971741 l2_safe=0x2a7c3b124cea40de613f2539705626069ac9526794fd064053d6e5c5f57e4aa6:20972321 l2_pending_safe=0x2a7c3b124cea40de613f2539705626069ac9526794fd064053d6e5c5f57e4aa6:20972321 l2_unsafe=0xcffdbe74d12ddcbf60f2e7f1a6480c8cbea08610e1919793772ea0563d9670bb:20972381 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728734109
Oct 12 04:55:10 dev base_rollup[1298011]: t=2024-10-12T11:55:10+0000 lvl=info msg="successfully processed payload" ref=0xcffdbe74d12ddcbf60f2e7f1a6480c8cbea08610e1919793772ea0563d9670bb:20972381 txs=123
Oct 12 04:55:10 dev base_rollup[1298011]: t=2024-10-12T11:55:10+0000 lvl=info msg="connected to peer" peer=16Uiu2HAmDK2HCjF3BDEC7He99zXpBXoCzaQabTBgMVML7QUH1jbP addr=/ip4/34.105.206.78/tcp/59254
Oct 12 04:55:10 dev base_rollup[1298011]: t=2024-10-12T11:55:10+0000 lvl=info msg="Starting P2P sync client event loop" peer=16Uiu2HAmDK2HCjF3BDEC7He99zXpBXoCzaQabTBgMVML7QUH1jbP
Oct 12 04:55:10 dev base_rollup[1298011]: t=2024-10-12T11:55:10+0000 lvl=info msg="disconnected from peer" peer=16Uiu2HAm7GGFeNVbG9Ghbwzx6i3EoRM8ZycVsZtRgveWLSWfRpEv addr=/ip4/103.20.97.27/tcp/13433
Oct 12 04:55:11 dev base_rollup[1298011]: t=2024-10-12T11:55:11+0000 lvl=info msg="disconnected from peer" peer=16Uiu2HAmDK2HCjF3BDEC7He99zXpBXoCzaQabTBgMVML7QUH1jbP addr=/ip4/34.105.206.78/tcp/59254
Oct 12 04:55:12 dev base_rollup[1298011]: t=2024-10-12T11:55:12+0000 lvl=info msg="Received signed execution payload from p2p" id=0x000df2720cc01be74b31b3d6d03f7794e141b23f422ec86feabd4e7a0c9e456b:20972382 peer=16Uiu2HAkxF7hSQk7jnEx3DtMP7AxVSSwDargpCEjkEsxvbRU6SfT txs=122
Oct 12 04:55:12 dev base_rollup[1298011]: t=2024-10-12T11:55:12+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x000df2720cc01be74b31b3d6d03f7794e141b23f422ec86feabd4e7a0c9e456b:20972382
Oct 12 04:55:12 dev base_rollup[1298011]: t=2024-10-12T11:55:12+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc28ea708cfe2df8a45e9aabdec3a18741eb84213609cbc9de4aabdfcd9cc0277:20971741 l2_safe=0x2a7c3b124cea40de613f2539705626069ac9526794fd064053d6e5c5f57e4aa6:20972321 l2_pending_safe=0x2a7c3b124cea40de613f2539705626069ac9526794fd064053d6e5c5f57e4aa6:20972321 l2_unsafe=0x000df2720cc01be74b31b3d6d03f7794e141b23f422ec86feabd4e7a0c9e456b:20972382 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728734111
Oct 12 04:55:12 dev base_rollup[1298011]: t=2024-10-12T11:55:12+0000 lvl=info msg="successfully processed payload" ref=0x000df2720cc01be74b31b3d6d03f7794e141b23f422ec86feabd4e7a0c9e456b:20972382 txs=122
Oct 12 04:55:13 dev base_rollup[1298011]: t=2024-10-12T11:55:13+0000 lvl=info msg="Received signed execution payload from p2p" id=0x441ef15639a32376975e4d025ed79d32ad7d43119c1804b1517a90d4bdaa584f:20972383 peer=16Uiu2HAmG6c7fyVT2tfhN4uKgwQDtEDJ1D55dUzeJAh3JdA9GyrY txs=113
Oct 12 04:55:13 dev base_rollup[1298011]: t=2024-10-12T11:55:13+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x441ef15639a32376975e4d025ed79d32ad7d43119c1804b1517a90d4bdaa584f:20972383
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc28ea708cfe2df8a45e9aabdec3a18741eb84213609cbc9de4aabdfcd9cc0277:20971741 l2_safe=0x2a7c3b124cea40de613f2539705626069ac9526794fd064053d6e5c5f57e4aa6:20972321 l2_pending_safe=0x2a7c3b124cea40de613f2539705626069ac9526794fd064053d6e5c5f57e4aa6:20972321 l2_unsafe=0x441ef15639a32376975e4d025ed79d32ad7d43119c1804b1517a90d4bdaa584f:20972383 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728734113
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="successfully processed payload" ref=0x441ef15639a32376975e4d025ed79d32ad7d43119c1804b1517a90d4bdaa584f:20972383 txs=113
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="Advancing bq origin" origin=0x2c4dafc8da23ec81392e2a0d57218b8df5d75aeb50f4cf81407822027b8be3fb:20949357 originBehind=false
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="created new channel" origin=0x2c4dafc8da23ec81392e2a0d57218b8df5d75aeb50f4cf81407822027b8be3fb:20949357 channel=df21650d06e38a585a7615a14a997a7d length=130020 frame_number=0 is_last=false
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="Reading channel" channel=df21650d06e38a585a7615a14a997a7d frames=5
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="Found next batch" batch_type=SpanBatch batch_timestamp=1728733991 parent_check=0x2a7c3b124cea40de613f2539705626069ac95267 origin_check=0x11467ea262ec7f8bcd7ecd8e6c693ecddf3016c9 start_epoch_number=20949332 end_epoch_number=20949332 block_count=3 txs=0 compression_algo=brotli
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=136 timestamp=1728733991
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=142 timestamp=1728733993
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=130 timestamp=1728733995
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="Found next batch" batch_type=SpanBatch batch_timestamp=1728733997 parent_check=0xfbec59de8fc62e47e935ccd4bf5156c0873a8aba origin_check=0xf7e701fb9a21986d135df86e48f0ce5c8e544500 start_epoch_number=20949332 end_epoch_number=20949333 block_count=3 txs=0 compression_algo=brotli
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=118 timestamp=1728733997
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=150 timestamp=1728733999
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=136 timestamp=1728734001
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="Found next batch" batch_type=SpanBatch batch_timestamp=1728734003 parent_check=0x034cd67eeb4706cca1ad66c56f89deb85dbe00e9 origin_check=0xf7e701fb9a21986d135df86e48f0ce5c8e544500 start_epoch_number=20949333 end_epoch_number=20949333 block_count=3 txs=0 compression_algo=brotli
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=119 timestamp=1728734003
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=135 timestamp=1728734005
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=105 timestamp=1728734007
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="Found next batch" batch_type=SpanBatch batch_timestamp=1728734009 parent_check=0x9f67a630e6cc0b4c0552e623182afadd6bbdad4d origin_check=0x5d87bfa6e5514e8f7822ea79454c1f8f9593c529 start_epoch_number=20949333 end_epoch_number=20949334 block_count=3 txs=0 compression_algo=brotli
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=114 timestamp=1728734009
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=156 timestamp=1728734011
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=108 timestamp=1728734013
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="Found next batch" batch_type=SpanBatch batch_timestamp=1728734015 parent_check=0x1900a437f3b16c01d4417b81963975b51791b623 origin_check=0x5d87bfa6e5514e8f7822ea79454c1f8f9593c529 start_epoch_number=20949334 end_epoch_number=20949334 block_count=3 txs=0 compression_algo=brotli
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=105 timestamp=1728734015
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=104 timestamp=1728734017
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=127 timestamp=1728734019
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="Found next batch" batch_type=SpanBatch batch_timestamp=1728734021 parent_check=0xce16a08ae25e5e2573428ab7cfb7b3c4c5191258 origin_check=0xee14875f49eeee2e5c620220a865be40be9c73ba start_epoch_number=20949334 end_epoch_number=20949335 block_count=3 txs=0 compression_algo=brotli
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=117 timestamp=1728734021
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=107 timestamp=1728734023
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=97 timestamp=1728734025
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="Found next batch" batch_type=SpanBatch batch_timestamp=1728734027 parent_check=0x3b579d3447e77fc87ac08fd3a50909a67adbcdfc origin_check=0xee14875f49eeee2e5c620220a865be40be9c73ba start_epoch_number=20949335 end_epoch_number=20949335 block_count=3 txs=0 compression_algo=brotli
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=157 timestamp=1728734027
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=143 timestamp=1728734029
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=127 timestamp=1728734031
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="Found next batch" batch_type=SpanBatch batch_timestamp=1728734033 parent_check=0xe6f77364ef9da91ab418ff2f3332466fbdc25770 origin_check=0xd37cba8bd48a69eaf79d524cab22daddf5eaec38 start_epoch_number=20949335 end_epoch_number=20949336 block_count=3 txs=0 compression_algo=brotli
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=103 timestamp=1728734033
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=112 timestamp=1728734035
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=113 timestamp=1728734037
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="Found next batch" batch_type=SpanBatch batch_timestamp=1728734039 parent_check=0x136afcb515819d7054cc4114f7ec7502dbc38969 origin_check=0xd37cba8bd48a69eaf79d524cab22daddf5eaec38 start_epoch_number=20949336 end_epoch_number=20949336 block_count=3 txs=0 compression_algo=brotli
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=124 timestamp=1728734039
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=97 timestamp=1728734041
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=109 timestamp=1728734043
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="Found next batch" batch_type=SpanBatch batch_timestamp=1728734045 parent_check=0xeee376185b23e9c5feb38965f152e3d088ac9a28 origin_check=0x23f47dd3e6abe759c4ea1071118d6db8cf95f182 start_epoch_number=20949336 end_epoch_number=20949337 block_count=3 txs=0 compression_algo=brotli
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=146 timestamp=1728734045
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=119 timestamp=1728734047
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=110 timestamp=1728734049
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="Found next batch" batch_type=SpanBatch batch_timestamp=1728734051 parent_check=0x7e61460ba449bc678ebc59d7f49088ceac38ba5a origin_check=0x23f47dd3e6abe759c4ea1071118d6db8cf95f182 start_epoch_number=20949337 end_epoch_number=20949337 block_count=3 txs=0 compression_algo=brotli
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=132 timestamp=1728734051
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=141 timestamp=1728734053
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=99 timestamp=1728734055
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="Found next batch" batch_type=SpanBatch batch_timestamp=1728734057 parent_check=0xeda319b688c05320e1977d125731302249074ac9 origin_check=0xb77972c90bfb611ad4ffbaeb3bd90f017c95ec4c start_epoch_number=20949337 end_epoch_number=20949338 block_count=3 txs=0 compression_algo=brotli
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=104 timestamp=1728734057
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=186 timestamp=1728734059
Oct 12 04:55:14 dev base_rollup[1298011]: t=2024-10-12T11:55:14+0000 lvl=info msg="generated attributes in payload queue" txs=251 timestamp=1728734061
Oct 12 04:55:15 dev base_rollup[1298011]: t=2024-10-12T11:55:15+0000 lvl=info msg="Received signed execution payload from p2p" id=0x420fec367407bcfaca2140bfdb153542e6fbe03b7b8ee4aedd57b295582199aa:20972384 peer=16Uiu2HAm1np7q4Q7msoWdWcfG4aAhnwEAZBrHyDFWmkk3NdX4aoz txs=143
Oct 12 04:55:15 dev base_rollup[1298011]: t=2024-10-12T11:55:15+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x420fec367407bcfaca2140bfdb153542e6fbe03b7b8ee4aedd57b295582199aa:20972384
Oct 12 04:55:15 dev base_rollup[1298011]: t=2024-10-12T11:55:15+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc28ea708cfe2df8a45e9aabdec3a18741eb84213609cbc9de4aabdfcd9cc0277:20971741 l2_safe=0x3a3fd1fb421b17a948099c2e2f11158441dcd2471c55b130527b4a5618a80d50:20972357 l2_pending_safe=0x3a3fd1fb421b17a948099c2e2f11158441dcd2471c55b130527b4a5618a80d50:20972357 l2_unsafe=0x420fec367407bcfaca2140bfdb153542e6fbe03b7b8ee4aedd57b295582199aa:20972384 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728734115
Oct 12 04:55:15 dev base_rollup[1298011]: t=2024-10-12T11:55:15+0000 lvl=info msg="successfully processed payload" ref=0x420fec367407bcfaca2140bfdb153542e6fbe03b7b8ee4aedd57b295582199aa:20972384 txs=143
Oct 12 04:55:16 dev base_rollup[1298011]: t=2024-10-12T11:55:16+0000 lvl=info msg="connected to peer" peer=16Uiu2HAmUACznkWggAMKdVN6CdGCqQYGLY1D7Z1LSnqYca2ov5jj addr=/ip4/94.130.54.120/tcp/47493
Oct 12 04:55:16 dev base_rollup[1298011]: t=2024-10-12T11:55:16+0000 lvl=info msg="Starting P2P sync client event loop" peer=16Uiu2HAmUACznkWggAMKdVN6CdGCqQYGLY1D7Z1LSnqYca2ov5jj
Oct 12 04:55:17 dev base_rollup[1298011]: t=2024-10-12T11:55:17+0000 lvl=info msg="disconnected from peer" peer=16Uiu2HAmUACznkWggAMKdVN6CdGCqQYGLY1D7Z1LSnqYca2ov5jj addr=/ip4/94.130.54.120/tcp/47493
Oct 12 04:55:17 dev base_rollup[1298011]: t=2024-10-12T11:55:17+0000 lvl=info msg="Received signed execution payload from p2p" id=0x75fadc9b426a04d5a0ac0a93f7e2eb176eb8a4b08b7fe8eb9076c0246f3f1e53:20972385 peer=16Uiu2HAmG6c7fyVT2tfhN4uKgwQDtEDJ1D55dUzeJAh3JdA9GyrY txs=122
Oct 12 04:55:17 dev base_rollup[1298011]: t=2024-10-12T11:55:17+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x75fadc9b426a04d5a0ac0a93f7e2eb176eb8a4b08b7fe8eb9076c0246f3f1e53:20972385
Oct 12 04:55:18 dev base_rollup[1298011]: t=2024-10-12T11:55:18+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc28ea708cfe2df8a45e9aabdec3a18741eb84213609cbc9de4aabdfcd9cc0277:20971741 l2_safe=0x3a3fd1fb421b17a948099c2e2f11158441dcd2471c55b130527b4a5618a80d50:20972357 l2_pending_safe=0x3a3fd1fb421b17a948099c2e2f11158441dcd2471c55b130527b4a5618a80d50:20972357 l2_unsafe=0x75fadc9b426a04d5a0ac0a93f7e2eb176eb8a4b08b7fe8eb9076c0246f3f1e53:20972385 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728734117
Oct 12 04:55:18 dev base_rollup[1298011]: t=2024-10-12T11:55:18+0000 lvl=info msg="successfully processed payload" ref=0x75fadc9b426a04d5a0ac0a93f7e2eb176eb8a4b08b7fe8eb9076c0246f3f1e53:20972385 txs=122
Oct 12 04:55:20 dev base_rollup[1298011]: t=2024-10-12T11:55:20+0000 lvl=info msg="Received signed execution payload from p2p" id=0x3ea93cabe598dce17569d59882557e7063a9fe41a6ac7de335e3ae900e4c96cc:20972386 peer=16Uiu2HAmGH7gHQqTcbFYe1fYbyuLPnczMKfQDZgkYQfrf5Da4o5b txs=119
Oct 12 04:55:20 dev base_rollup[1298011]: t=2024-10-12T11:55:20+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x3ea93cabe598dce17569d59882557e7063a9fe41a6ac7de335e3ae900e4c96cc:20972386
Oct 12 04:55:20 dev base_rollup[1298011]: t=2024-10-12T11:55:20+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc28ea708cfe2df8a45e9aabdec3a18741eb84213609cbc9de4aabdfcd9cc0277:20971741 l2_safe=0x3a3fd1fb421b17a948099c2e2f11158441dcd2471c55b130527b4a5618a80d50:20972357 l2_pending_safe=0x3a3fd1fb421b17a948099c2e2f11158441dcd2471c55b130527b4a5618a80d50:20972357 l2_unsafe=0x3ea93cabe598dce17569d59882557e7063a9fe41a6ac7de335e3ae900e4c96cc:20972386 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728734119
Oct 12 04:55:20 dev base_rollup[1298011]: t=2024-10-12T11:55:20+0000 lvl=info msg="successfully processed payload" ref=0x3ea93cabe598dce17569d59882557e7063a9fe41a6ac7de335e3ae900e4c96cc:20972386 txs=119
Oct 12 04:55:21 dev base_rollup[1298011]: t=2024-10-12T11:55:21+0000 lvl=info msg="Received signed execution payload from p2p" id=0xa75c12289c4ba16dac2ad91216b3b7fcdae0e864ee0105c754fca1fdcae6e188:20972387 peer=16Uiu2HAmKgy3vyLXkqgN6CqujJg9Tgvr9r9RdjnueZfHSqqQWFff txs=130
Oct 12 04:55:21 dev base_rollup[1298011]: t=2024-10-12T11:55:21+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0xa75c12289c4ba16dac2ad91216b3b7fcdae0e864ee0105c754fca1fdcae6e188:20972387
Oct 12 04:55:21 dev base_rollup[1298011]: t=2024-10-12T11:55:21+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc28ea708cfe2df8a45e9aabdec3a18741eb84213609cbc9de4aabdfcd9cc0277:20971741 l2_safe=0x3a3fd1fb421b17a948099c2e2f11158441dcd2471c55b130527b4a5618a80d50:20972357 l2_pending_safe=0x3a3fd1fb421b17a948099c2e2f11158441dcd2471c55b130527b4a5618a80d50:20972357 l2_unsafe=0xa75c12289c4ba16dac2ad91216b3b7fcdae0e864ee0105c754fca1fdcae6e188:20972387 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728734121
Oct 12 04:55:21 dev base_rollup[1298011]: t=2024-10-12T11:55:21+0000 lvl=info msg="successfully processed payload" ref=0xa75c12289c4ba16dac2ad91216b3b7fcdae0e864ee0105c754fca1fdcae6e188:20972387 txs=130
Oct 12 04:55:24 dev base_rollup[1298011]: t=2024-10-12T11:55:24+0000 lvl=info msg="Received signed execution payload from p2p" id=0x875a12bb441b56cc39e988119ef0e99efa2984b65f15be6b120c0cf2ab5d7349:20972388 peer=16Uiu2HAmTUiRQw5PqmBqAy2TsgrLGkNvNkEnysrWEEpTZ1tDCFtd txs=116
Oct 12 04:55:24 dev base_rollup[1298011]: t=2024-10-12T11:55:24+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x875a12bb441b56cc39e988119ef0e99efa2984b65f15be6b120c0cf2ab5d7349:20972388
Oct 12 04:55:24 dev base_rollup[1298011]: t=2024-10-12T11:55:24+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc28ea708cfe2df8a45e9aabdec3a18741eb84213609cbc9de4aabdfcd9cc0277:20971741 l2_safe=0x3a3fd1fb421b17a948099c2e2f11158441dcd2471c55b130527b4a5618a80d50:20972357 l2_pending_safe=0x3a3fd1fb421b17a948099c2e2f11158441dcd2471c55b130527b4a5618a80d50:20972357 l2_unsafe=0x875a12bb441b56cc39e988119ef0e99efa2984b65f15be6b120c0cf2ab5d7349:20972388 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728734123
Oct 12 04:55:24 dev base_rollup[1298011]: t=2024-10-12T11:55:24+0000 lvl=info msg="successfully processed payload" ref=0x875a12bb441b56cc39e988119ef0e99efa2984b65f15be6b120c0cf2ab5d7349:20972388 txs=116
Oct 12 04:55:24 dev base_rollup[1298011]: t=2024-10-12T11:55:24+0000 lvl=info msg="Advancing bq origin" origin=0xb778b577ac24de12410a38171bf9078f88fbde8de96070986dc7c3f58ae21e6a:20949358 originBehind=false
Oct 12 04:55:25 dev base_rollup[1298011]: t=2024-10-12T11:55:25+0000 lvl=info msg="Received signed execution payload from p2p" id=0x6ff433fbcd5bf25a38b21e26b689a0f93b9bd9040ca2b375838d86f2ff489fbc:20972389 peer=16Uiu2HAkvVbewYytX4yCaHyC6fMSE4aqsvrnjjAEhMosa61eZiT1 txs=141
Oct 12 04:55:25 dev base_rollup[1298011]: t=2024-10-12T11:55:25+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x6ff433fbcd5bf25a38b21e26b689a0f93b9bd9040ca2b375838d86f2ff489fbc:20972389
Oct 12 04:55:26 dev base_rollup[1298011]: t=2024-10-12T11:55:26+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc28ea708cfe2df8a45e9aabdec3a18741eb84213609cbc9de4aabdfcd9cc0277:20971741 l2_safe=0x3a3fd1fb421b17a948099c2e2f11158441dcd2471c55b130527b4a5618a80d50:20972357 l2_pending_safe=0x3a3fd1fb421b17a948099c2e2f11158441dcd2471c55b130527b4a5618a80d50:20972357 l2_unsafe=0x6ff433fbcd5bf25a38b21e26b689a0f93b9bd9040ca2b375838d86f2ff489fbc:20972389 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728734125
Oct 12 04:55:26 dev base_rollup[1298011]: t=2024-10-12T11:55:26+0000 lvl=info msg="successfully processed payload" ref=0x6ff433fbcd5bf25a38b21e26b689a0f93b9bd9040ca2b375838d86f2ff489fbc:20972389 txs=141
Oct 12 04:55:26 dev base_rollup[1298011]: t=2024-10-12T11:55:26+0000 lvl=info msg="connected to peer" peer=16Uiu2HAmPiVxyB9Y22p2JUssYq2mJfKdHudYMNp6WB1TZ9UWiTkX addr=/ip4/49.12.126.245/tcp/45868
Oct 12 04:55:26 dev base_rollup[1298011]: t=2024-10-12T11:55:26+0000 lvl=info msg="Starting P2P sync client event loop" peer=16Uiu2HAmPiVxyB9Y22p2JUssYq2mJfKdHudYMNp6WB1TZ9UWiTkX
Oct 12 04:55:26 dev base_rollup[1298011]: t=2024-10-12T11:55:26+0000 lvl=info msg="disconnected from peer" peer=16Uiu2HAmPiVxyB9Y22p2JUssYq2mJfKdHudYMNp6WB1TZ9UWiTkX addr=/ip4/49.12.126.245/tcp/45868
Oct 12 04:55:27 dev base_rollup[1298011]: t=2024-10-12T11:55:27+0000 lvl=info msg="Received signed execution payload from p2p" id=0xeeafb0a95ec2b89b4e14ba16cda0044a105698fbe8b1b055b9966feb408d2ee3:20972390 peer=16Uiu2HAmCLiAcJagP9tzWC9DWCc4kkAbA2KfHKVg9N9Y7L4sadeW txs=103
Oct 12 04:55:27 dev base_rollup[1298011]: t=2024-10-12T11:55:27+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0xeeafb0a95ec2b89b4e14ba16cda0044a105698fbe8b1b055b9966feb408d2ee3:20972390
Oct 12 04:55:27 dev base_rollup[1298011]: t=2024-10-12T11:55:27+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc28ea708cfe2df8a45e9aabdec3a18741eb84213609cbc9de4aabdfcd9cc0277:20971741 l2_safe=0x3a3fd1fb421b17a948099c2e2f11158441dcd2471c55b130527b4a5618a80d50:20972357 l2_pending_safe=0x3a3fd1fb421b17a948099c2e2f11158441dcd2471c55b130527b4a5618a80d50:20972357 l2_unsafe=0xeeafb0a95ec2b89b4e14ba16cda0044a105698fbe8b1b055b9966feb408d2ee3:20972390 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728734127
Oct 12 04:55:27 dev base_rollup[1298011]: t=2024-10-12T11:55:27+0000 lvl=info msg="successfully processed payload" ref=0xeeafb0a95ec2b89b4e14ba16cda0044a105698fbe8b1b055b9966feb408d2ee3:20972390 txs=103
Oct 12 04:55:30 dev base_rollup[1298011]: t=2024-10-12T11:55:30+0000 lvl=info msg="Received signed execution payload from p2p" id=0xe51ae6947e2c6c3ada2d479881524e9450119c51028a6476a216b490b3e3f2ec:20972391 peer=16Uiu2HAmJAvvrU3G1F1TFGsHqs2PwFRn2TzJJ1NjcXjb5RupzwK9 txs=138
Oct 12 04:55:30 dev base_rollup[1298011]: t=2024-10-12T11:55:30+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0xe51ae6947e2c6c3ada2d479881524e9450119c51028a6476a216b490b3e3f2ec:20972391
Oct 12 04:55:30 dev base_rollup[1298011]: t=2024-10-12T11:55:30+0000 lvl=info msg="Sync progress" reason="new chain head block" l2_finalized=0xc28ea708cfe2df8a45e9aabdec3a18741eb84213609cbc9de4aabdfcd9cc0277:20971741 l2_safe=0x3a3fd1fb421b17a948099c2e2f11158441dcd2471c55b130527b4a5618a80d50:20972357 l2_pending_safe=0x3a3fd1fb421b17a948099c2e2f11158441dcd2471c55b130527b4a5618a80d50:20972357 l2_unsafe=0xe51ae6947e2c6c3ada2d479881524e9450119c51028a6476a216b490b3e3f2ec:20972391 l2_backup_unsafe=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_time=1728734129
Oct 12 04:55:30 dev base_rollup[1298011]: t=2024-10-12T11:55:30+0000 lvl=info msg="successfully processed payload" ref=0xe51ae6947e2c6c3ada2d479881524e9450119c51028a6476a216b490b3e3f2ec:20972391 txs=138
Oct 12 04:55:32 dev base_rollup[1298011]: t=2024-10-12T11:55:32+0000 lvl=info msg="Received signed execution payload from p2p" id=0x8503499c912ce810b4f69a5ce6e3114316d10446903c7945a91ad5cf56e24f4f:20972392 peer=16Uiu2HAmTUiRQw5PqmBqAy2TsgrLGkNvNkEnysrWEEpTZ1tDCFtd txs=124
Oct 12 04:55:32 dev base_rollup[1298011]: t=2024-10-12T11:55:32+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x8503499c912ce810b4f69a5ce6e3114316d10446903c7945a91ad5cf56e24f4f:20972392
Oct 12 04:55:33 dev base_rollup[1298011]: t=2024-10-12T11:55:33+0000 lvl=info msg="Received signed execution payload from p2p" id=0x53e358ec574bb42a077ae4a522b33352fbc220e802b0bc93137e67060d17a8a6:20972393 peer=16Uiu2HAmG6c7fyVT2tfhN4uKgwQDtEDJ1D55dUzeJAh3JdA9GyrY txs=132
Oct 12 04:55:34 dev base_rollup[1298011]: t=2024-10-12T11:55:34+0000 lvl=info msg="connected to peer" peer=16Uiu2HAmPiVxyB9Y22p2JUssYq2mJfKdHudYMNp6WB1TZ9UWiTkX addr=/ip4/49.12.126.245/tcp/49964
Oct 12 04:55:34 dev base_rollup[1298011]: t=2024-10-12T11:55:34+0000 lvl=info msg="Starting P2P sync client event loop" peer=16Uiu2HAmPiVxyB9Y22p2JUssYq2mJfKdHudYMNp6WB1TZ9UWiTkX
Oct 12 04:55:35 dev base_rollup[1298011]: t=2024-10-12T11:55:35+0000 lvl=info msg="disconnected from peer" peer=16Uiu2HAmPiVxyB9Y22p2JUssYq2mJfKdHudYMNp6WB1TZ9UWiTkX addr=/ip4/49.12.126.245/tcp/49964
Oct 12 04:55:36 dev base_rollup[1298011]: t=2024-10-12T11:55:36+0000 lvl=info msg="Received signed execution payload from p2p" id=0xd8f5a92af795030ce60c4e2801bcde27e9f91e1d88593fc3c45536d925961162:20972394 peer=16Uiu2HAmAvENHM6qLrmgyr1acFhWKT4AAoTRibusb5wHe3FXvhNF txs=120
Oct 12 04:55:37 dev base_rollup[1298011]: t=2024-10-12T11:55:37+0000 lvl=error msg="Payload execution failed" block_hash=0x8503499c912ce810b4f69a5ce6e3114316d10446903c7945a91ad5cf56e24f4f err="Post \"http://base_reth:8751\": context deadline exceeded"
Oct 12 04:55:37 dev base_rollup[1298011]: t=2024-10-12T11:55:37+0000 lvl=info msg="failed to insert payload" ref=0x8503499c912ce810b4f69a5ce6e3114316d10446903c7945a91ad5cf56e24f4f:20972392 txs=124 err="temp: failed to update insert payload: failed to execute payload: Post \"http://base_reth:8751\": context deadline exceeded"
Oct 12 04:55:37 dev base_rollup[1298011]: t=2024-10-12T11:55:37+0000 lvl=warn msg="Engine temporary error" err="temp: failed to update insert payload: failed to execute payload: Post \"http://base_reth:8751\": context deadline exceeded"
Oct 12 04:55:37 dev base_rollup[1298011]: t=2024-10-12T11:55:37+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x53e358ec574bb42a077ae4a522b33352fbc220e802b0bc93137e67060d17a8a6:20972393
Oct 12 04:55:37 dev base_rollup[1298011]: t=2024-10-12T11:55:37+0000 lvl=info msg="Received signed execution payload from p2p" id=0xba7116a31e5d537021a0cb77e18cb7a6bdc70c34e5d296ac8dbe67edaacc2c2c:20972395 peer=16Uiu2HAmAvENHM6qLrmgyr1acFhWKT4AAoTRibusb5wHe3FXvhNF txs=15
Oct 12 04:55:40 dev base_rollup[1298011]: t=2024-10-12T11:55:40+0000 lvl=info msg="Received signed execution payload from p2p" id=0xba1ae6293d9c6a18fe5da8816814cd7fa164915d412fbdfadc4a86b43c1a0b47:20972396 peer=16Uiu2HAmA7oa6FfeWER5iZ3m912p3CcoqS6BwBsZKJy2avGtDq2v txs=211
Oct 12 04:55:41 dev base_rollup[1298011]: t=2024-10-12T11:55:41+0000 lvl=info msg="Received signed execution payload from p2p" id=0xe408f78de339c13c63b67daef3d22b5aad6b14e86c3dfca8969e867be663ded3:20972397 peer=16Uiu2HAkvVbewYytX4yCaHyC6fMSE4aqsvrnjjAEhMosa61eZiT1 txs=141
Oct 12 04:55:42 dev base_rollup[1298011]: t=2024-10-12T11:55:42+0000 lvl=error msg="Payload execution failed" block_hash=0x8503499c912ce810b4f69a5ce6e3114316d10446903c7945a91ad5cf56e24f4f err="Post \"http://base_reth:8751\": context deadline exceeded"
Oct 12 04:55:42 dev base_rollup[1298011]: t=2024-10-12T11:55:42+0000 lvl=info msg="failed to insert payload" ref=0x8503499c912ce810b4f69a5ce6e3114316d10446903c7945a91ad5cf56e24f4f:20972392 txs=124 err="temp: failed to update insert payload: failed to execute payload: Post \"http://base_reth:8751\": context deadline exceeded"
Oct 12 04:55:42 dev base_rollup[1298011]: t=2024-10-12T11:55:42+0000 lvl=warn msg="Engine temporary error" err="temp: failed to update insert payload: failed to execute payload: Post \"http://base_reth:8751\": context deadline exceeded"

After restarting the node with experimental engine disabled, I captured the following interesting info including a message about a mismatched parent hash and a bad block encountered during a rewind:

Oct 12 15:54:43 dev base_reth[2277506]: 2024-10-12T22:54:43.608629Z  INFO Status connected_peers=11 latest_block=20971402
Oct 12 15:55:08 dev base_reth[2277506]: 2024-10-12T22:55:08.607976Z  INFO Status connected_peers=11 latest_block=20971402
Oct 12 15:55:33 dev base_reth[2277506]: 2024-10-12T22:55:33.608437Z  INFO Status connected_peers=11 latest_block=20971402
Oct 12 15:55:58 dev base_reth[2277506]: 2024-10-12T22:55:58.608139Z  INFO Status connected_peers=11 latest_block=20971402
Oct 12 15:56:18 dev base_reth[2277506]: 2024-10-12T22:56:18.007398Z  INFO Static File Producer started targets=StaticFileTargets { headers: Some(20971390..=20971402), receipts: Some(20971390..=20971402), transactions: Some(20971390..=20971402) }
Oct 12 15:56:18 dev base_reth[2277506]: 2024-10-12T22:56:18.007665Z  INFO Live sync in progress, downloading blocks remaining_blocks=1 target_block_hash=0x87becacd27de8c7537570c181e85b29bc1bf0486c63fb81a66725453710b4f3a
Oct 12 15:56:18 dev base_reth[2277506]: 2024-10-12T22:56:18.007678Z  INFO Received forkchoice updated message when syncing head_block_hash=0x4484a51faa4cb9d7187bc7937743a91c2934bda19a3d8c43ee9e6dee485acd80 safe_block_hash=0x0000000000000000000000000000000000000000000000000000000000000000 finalized_block_hash=0x0000000000000000000000000000000000000000000000000000000000000000
Oct 12 15:56:18 dev base_reth[2277506]: 2024-10-12T22:56:18.034184Z  INFO Static File Producer finished targets=StaticFileTargets { headers: Some(20971390..=20971402), receipts: Some(20971390..=20971402), transactions: Some(20971390..=20971402) } elapsed=26.739645ms
Oct 12 15:56:18 dev base_reth[2277506]: 2024-10-12T22:56:18.490855Z  INFO Preparing stage pipeline_stages=1/14 stage=Headers checkpoint=20971402 target=None
Oct 12 15:56:19 dev base_reth[2277506]: 2024-10-12T22:56:19.906969Z ERROR Header cannot be attached to known canonical chain error=mismatched parent hash: got 0xc363742394eb1a864ccc27692b3bd088cd0370349f7353b28c779f7eab9a3c8b, expected 0x7fd6dda911d2d5029a6026896f9c9ca13fc51e28ad7b6be5ae3922824cd4a705 number=20971403 hash=0x7fb4a6f67d75d14ad63c8468acce10db0add12b0af53a9dfdea3b437d93c4851
Oct 12 15:56:19 dev base_reth[2277506]: 2024-10-12T22:56:19.908927Z ERROR Cannot attach header to head error=mismatched parent hash: got 0xc363742394eb1a864ccc27692b3bd088cd0370349f7353b28c779f7eab9a3c8b, expected 0x7fd6dda911d2d5029a6026896f9c9ca13fc51e28ad7b6be5ae3922824cd4a705
Oct 12 15:56:19 dev base_reth[2277506]: 2024-10-12T22:56:19.908945Z  WARN Stage encountered detached head stage=Headers local_head=SealedHeader { hash: 0x7fd6dda911d2d5029a6026896f9c9ca13fc51e28ad7b6be5ae3922824cd4a705, header: Header { parent_hash: 0x377039ab4fc9b631e0f587690d837c6297550f23b2cf8e3ef885204617ebc1c1, ommers_hash: 0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347, beneficiary: 0x4200000000000000000000000000000000000011, state_root: 0xdb1bd8d61865b9ec3e62137c8ac279bc791c20de8ab5e3764042c3ed39bdec99, transactions_root: 0x29c1be10e2c5398e2d8cc32ea26772b715d7ebbcbcc308902f1c088de453a546, receipts_root: 0x52455d186de4ae748882ab9a510c886478a588890ed81d3a01ba00b31f297f7a, withdrawals_root: Some(0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421), logs_bloom: 0x5f32242244bcb4c6cb510f1cc31d38e4f471dc7d116da498d69f5a041bf8073b8deddb989e6497ba3f8290d17c7736aef938f04f9e8523c7a3770a127ebcb0aa0f469a1e066e96eb8634701fe92a2ba7059657831fff9ab38bea4badf76a2df2fc8ea1249bc630242a26bcd1d08648f447311c423acd1537b0c7fb306f69f0ed1288cb1fb9b898a86d8dd35a80b5753205609fc1b8eda91edc3ec7d6b386b12aa7c8cfe3a8b8ac6eb548359538c28795a633bd207de3db18d1b3676b7b0cd79ef7d0f4ab42e51ec5a3f159bde753fb62eb51a85ca0dc12f61bebaabe938a66b6d3790c47c9bd974179781ced5c4b67d1f40a79833b90a4716a647a14c118a7be, difficulty: 0, number: 20971402, gas_limit: 156000000, gas_used: 38194603, timestamp: 1728732151, mix_hash: 0x0582ccfe34b0720fafbbe8a1b653a68cea06ee0fe3cfcbbe4ba1ad16ce1f0f05, nonce: 0x0000000000000000, base_fee_per_gas: Some(3891229), blob_gas_used: Some(0), excess_blob_gas: Some(0), parent_beacon_block_root: Some(0xaa036b148ef760f20732d4d6bb415a86590bbac2a13e2e5ca4b59ab9794c4bf4), requests_root: None, extra_data: 0x } } header=SealedHeader { hash: 0x7fb4a6f67d75d14ad63c8468acce10db0add12b0af53a9dfdea3b437d93c4851, header: Header { parent_hash: 0xc363742394eb1a864ccc27692b3bd088cd0370349f7353b28c779f7eab9a3c8b, ommers_hash: 0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347, beneficiary: 0x4200000000000000000000000000000000000011, state_root: 0xc038a22f0f9aaf5540f92884e3d6902d7ac0591d33c1137dde9f3b3a5949ce4f, transactions_root: 0x637b5ee3c25ccd8c4e4b1562967bccf42ac50d8a105e736702a3afcc1ce49b4f, receipts_root: 0x658fc77e2c3d60b4f676252b00d6c31c099ea0bf782f0fc32472fbf55d989b16, withdrawals_root: Some(0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421), logs_bloom: 0x3e3ef412616d28619dc153f2abb774b82492ea2f6f5bc1f038cf9837e3b93f3a6f6da11e363dee30358fdad60a3e37159f5ded1d535f7b8d1773401ef43ca36edec19a3ea7dd0d5d87c60929c1bbe875adfc7588137d36f32d07d9baf770e843229905600f963f7a51265eb5f207aaf77f0d3d667e3c0e97516fbb361e1bb9eed423cf5b995cf03f57439746ddc7d4d637a1ddc93d21690bb66feecfbde24da4f6f9dc9e97aae65dd3dc2d727ee3978f60b7c4e183c22bda065fa139e01625c14996a05bfed17f8fe7b8dbac89779cde8c62827d16d8a23ae46174da9cd973a494340c87ee7dab5f7cd0f8dea82d4dfce52a93e0f7b1e2734760ba4cd88f5a3f, difficulty: 0, number: 20971403, gas_limit: 156000000, gas_used: 38136683, timestamp: 1728732153, mix_hash: 0xf37ef106210fa72e6037015db30a2e5fee44c11984f44f99ad4013cc027e6cbd, nonce: 0x0000000000000000, base_fee_per_gas: Some(3898529), blob_gas_used: Some(0), excess_blob_gas: Some(0), parent_beacon_block_root: Some(0xe7e0c2dd04bbc586c0eed23ce2e2a3939d043a02f657f4650b99c1cf4e89c1d9), requests_root: None, extra_data: 0x } } error=mismatched parent hash: got 0xc363742394eb1a864ccc27692b3bd088cd0370349f7353b28c779f7eab9a3c8b, expected 0x7fd6dda911d2d5029a6026896f9c9ca13fc51e28ad7b6be5ae3922824cd4a705
Oct 12 15:56:19 dev base_reth[2277506]: 2024-10-12T22:56:19.909057Z  INFO Unwinding{stage=Finish}: Starting unwind from=20971402 to=20971399 bad_block=Some(20971402)
Oct 12 15:56:19 dev base_reth[2277506]: 2024-10-12T22:56:19.909075Z  INFO Unwinding{stage=Finish}: Stage unwound stage=Finish unwind_to=20971399 progress=20971399 done=true
Oct 12 15:56:19 dev base_reth[2277506]: 2024-10-12T22:56:19.910580Z  INFO Unwinding{stage=Prune}: Starting unwind from=20971402 to=20971399 bad_block=Some(20971402)
Oct 12 15:56:19 dev base_reth[2277506]: 2024-10-12T22:56:19.910697Z  INFO Unwinding{stage=Prune}: Stage unwound stage=Prune unwind_to=20971399 progress=20971399 done=true
Oct 12 15:56:19 dev base_reth[2277506]: 2024-10-12T22:56:19.911834Z  INFO Unwinding{stage=IndexAccountHistory}: Starting unwind from=20971402 to=20971399 bad_block=Some(20971402)
Oct 12 15:56:19 dev base_reth[2277506]: 2024-10-12T22:56:19.944316Z  INFO Unwinding{stage=IndexAccountHistory}: Stage unwound stage=IndexAccountHistory unwind_to=20971399 progress=20971399 done=true
Oct 12 15:56:19 dev base_reth[2277506]: 2024-10-12T22:56:19.998354Z  INFO Unwinding{stage=IndexStorageHistory}: Starting unwind from=20971402 to=20971399 bad_block=Some(20971402)
Oct 12 15:56:20 dev base_reth[2277506]: 2024-10-12T22:56:20.100277Z  INFO Unwinding{stage=IndexStorageHistory}: Stage unwound stage=IndexStorageHistory unwind_to=20971399 progress=20971399 done=true
Oct 12 15:56:20 dev base_reth[2277506]: 2024-10-12T22:56:20.233065Z  INFO Unwinding{stage=TransactionLookup}: Starting unwind from=20971402 to=20971399 bad_block=Some(20971402)
Oct 12 15:56:20 dev base_reth[2277506]: 2024-10-12T22:56:20.261413Z  INFO Unwinding{stage=TransactionLookup}: Stage unwound stage=TransactionLookup unwind_to=20971399 progress=20971399 done=true
Oct 12 15:56:20 dev base_reth[2277506]: 2024-10-12T22:56:20.311702Z  INFO Unwinding{stage=MerkleExecute}: Starting unwind from=20971402 to=20971399 bad_block=Some(20971402)
Oct 12 15:56:20 dev base_reth[2277506]: 2024-10-12T22:56:20.311722Z  INFO Unwinding{stage=MerkleExecute}: Stage is always skipped
Oct 12 15:56:20 dev base_reth[2277506]: 2024-10-12T22:56:20.311727Z  INFO Unwinding{stage=MerkleExecute}: Stage unwound stage=MerkleExecute unwind_to=20971399 progress=20971399 done=true
Oct 12 15:56:20 dev base_reth[2277506]: 2024-10-12T22:56:20.312916Z  INFO Unwinding{stage=StorageHashing}: Starting unwind from=20971402 to=20971399 bad_block=Some(20971402)
Oct 12 15:56:20 dev base_reth[2277506]: 2024-10-12T22:56:20.388370Z  INFO Unwinding{stage=StorageHashing}: Stage unwound stage=StorageHashing unwind_to=20971399 progress=20971399 done=true
Oct 12 15:56:20 dev base_reth[2277506]: 2024-10-12T22:56:20.536215Z  INFO Unwinding{stage=AccountHashing}: Starting unwind from=20971402 to=20971399 bad_block=Some(20971402)
Oct 12 15:56:20 dev base_reth[2277506]: 2024-10-12T22:56:20.561509Z  INFO Unwinding{stage=AccountHashing}: Stage unwound stage=AccountHashing unwind_to=20971399 progress=20971399 done=true
Oct 12 15:56:20 dev base_reth[2277506]: 2024-10-12T22:56:20.607698Z  INFO Unwinding{stage=MerkleUnwind}: Starting unwind from=20971402 to=20971399 bad_block=Some(20971402)
Oct 12 15:56:20 dev base_reth[2277506]: 2024-10-12T22:56:20.960948Z  INFO Unwinding{stage=MerkleUnwind}: Stage unwound stage=MerkleUnwind unwind_to=20971399 progress=20971399 done=true
Oct 12 15:56:21 dev base_reth[2277506]: 2024-10-12T22:56:21.524083Z  INFO Unwinding{stage=PruneSenderRecovery}: Starting unwind from=20971402 to=20971399 bad_block=Some(20971402)
Oct 12 15:56:21 dev base_reth[2277506]: 2024-10-12T22:56:21.524111Z  INFO Unwinding{stage=PruneSenderRecovery}: Stage unwound stage=PruneSenderRecovery unwind_to=20971399 progress=20971399 done=true
Oct 12 15:56:21 dev base_reth[2277506]: 2024-10-12T22:56:21.525347Z  INFO Unwinding{stage=Execution}: Starting unwind from=20971402 to=20971399 bad_block=Some(20971402)
Oct 12 15:56:21 dev base_reth[2277506]: 2024-10-12T22:56:21.579698Z  INFO Unwinding{stage=Execution}: Stage unwound stage=Execution unwind_to=20971399 progress=20971399 done=true
Oct 12 15:56:21 dev base_reth[2277506]: 2024-10-12T22:56:21.743337Z  INFO Unwinding{stage=SenderRecovery}: Starting unwind from=20971402 to=20971399 bad_block=Some(20971402)
Oct 12 15:56:21 dev base_reth[2277506]: 2024-10-12T22:56:21.743361Z  INFO Unwinding{stage=SenderRecovery}: Stage unwound stage=SenderRecovery unwind_to=20971399 progress=20971399 done=true
Oct 12 15:56:21 dev base_reth[2277506]: 2024-10-12T22:56:21.744621Z  INFO Unwinding{stage=Bodies}: Starting unwind from=20971402 to=20971399 bad_block=Some(20971402)
Oct 12 15:56:21 dev base_reth[2277506]: 2024-10-12T22:56:21.744839Z  INFO Unwinding{stage=Bodies}: Stage unwound stage=Bodies unwind_to=20971399 progress=20971399 done=true
Oct 12 15:56:21 dev base_reth[2277506]: 2024-10-12T22:56:21.751162Z  INFO Unwinding{stage=Headers}: Starting unwind from=20971402 to=20971399 bad_block=Some(20971402)
Oct 12 15:56:21 dev base_reth[2277506]: 2024-10-12T22:56:21.751360Z  INFO Unwinding{stage=Headers}: Stage unwound stage=Headers unwind_to=20971399 progress=20971399 done=true
Oct 12 15:56:21 dev base_reth[2277506]: 2024-10-12T22:56:21.757154Z  WARN Bad block detected in unwind invalid_hash=0x7fd6dda911d2d5029a6026896f9c9ca13fc51e28ad7b6be5ae3922824cd4a705 invalid_number=20971402
Oct 12 15:56:21 dev base_reth[2277506]: 2024-10-12T22:56:21.757172Z  WARN Bad block with hash hash=0x7fd6dda911d2d5029a6026896f9c9ca13fc51e28ad7b6be5ae3922824cd4a705 header=Header { parent_hash: 0x377039ab4fc9b631e0f587690d837c6297550f23b2cf8e3ef885204617ebc1c1, ommers_hash: 0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347, beneficiary: 0x4200000000000000000000000000000000000011, state_root: 0xdb1bd8d61865b9ec3e62137c8ac279bc791c20de8ab5e3764042c3ed39bdec99, transactions_root: 0x29c1be10e2c5398e2d8cc32ea26772b715d7ebbcbcc308902f1c088de453a546, receipts_root: 0x52455d186de4ae748882ab9a510c886478a588890ed81d3a01ba00b31f297f7a, withdrawals_root: Some(0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421), logs_bloom: 0x5f32242244bcb4c6cb510f1cc31d38e4f471dc7d116da498d69f5a041bf8073b8deddb989e6497ba3f8290d17c7736aef938f04f9e8523c7a3770a127ebcb0aa0f469a1e066e96eb8634701fe92a2ba7059657831fff9ab38bea4badf76a2df2fc8ea1249bc630242a26bcd1d08648f447311c423acd1537b0c7fb306f69f0ed1288cb1fb9b898a86d8dd35a80b5753205609fc1b8eda91edc3ec7d6b386b12aa7c8cfe3a8b8ac6eb548359538c28795a633bd207de3db18d1b3676b7b0cd79ef7d0f4ab42e51ec5a3f159bde753fb62eb51a85ca0dc12f61bebaabe938a66b6d3790c47c9bd974179781ced5c4b67d1f40a79833b90a4716a647a14c118a7be, difficulty: 0, number: 20971402, gas_limit: 156000000, gas_used: 38194603, timestamp: 1728732151, mix_hash: 0x0582ccfe34b0720fafbbe8a1b653a68cea06ee0fe3cfcbbe4ba1ad16ce1f0f05, nonce: 0x0000000000000000, base_fee_per_gas: Some(3891229), blob_gas_used: Some(0), excess_blob_gas: Some(0), parent_beacon_block_root: Some(0xaa036b148ef760f20732d4d6bb415a86590bbac2a13e2e5ca4b59ab9794c4bf4), requests_root: None, extra_data: 0x }
Oct 12 15:56:21 dev base_reth[2277506]: 2024-10-12T22:56:21.853903Z  INFO Static File Producer started targets=StaticFileTargets { headers: Some(20971400..=20971402), receipts: Some(20971400..=20971402), transactions: Some(20971400..=20971402) }
Oct 12 15:56:21 dev base_reth[2277506]: 2024-10-12T22:56:21.854177Z  INFO Live sync in progress, downloading blocks remaining_blocks=1 target_block_hash=0x6c629554fa6a347a7201dbadebc91b92087fd390ca3e780584548994964c02e2
Oct 12 15:56:21 dev base_reth[2277506]: 2024-10-12T22:56:21.854181Z ERROR Hook finished with error name=StaticFile error=Common(Provider(BlockBodyIndicesNotFound(20971400)))
Oct 12 15:56:21 dev base_reth[2277506]: 2024-10-12T22:56:21.941467Z  INFO Static File Producer started targets=StaticFileTargets { headers: Some(20971400..=20971402), receipts: Some(20971400..=20971402), transactions: Some(20971400..=20971402) }
Oct 12 15:56:22 dev base_reth[2277506]: 2024-10-12T22:56:22.001655Z ERROR Hook finished with error name=StaticFile error=Common(Provider(UnexpectedStaticFileBlockNumber(Transactions, 20971400, 20971401)))
Oct 12 15:56:22 dev base_reth[2277506]: 2024-10-12T22:56:22.001826Z  INFO Preparing stage pipeline_stages=1/14 stage=Headers checkpoint=20971399 target=None
Oct 12 15:56:23 dev base_reth[2277506]: 2024-10-12T22:56:23.208493Z  INFO Received headers total=10000 from_block=20992217 to_block=20982218
Oct 12 15:56:23 dev base_reth[2277506]: 2024-10-12T22:56:23.213387Z  INFO Received headers total=10000 from_block=20982217 to_block=20972218
Oct 12 15:56:23 dev base_reth[2277506]: 2024-10-12T22:56:23.220692Z  INFO Received headers total=818 from_block=20972217 to_block=20971400
Oct 12 15:56:23 dev base_reth[2277506]: 2024-10-12T22:56:23.221301Z  INFO Writing headers total=20818
Oct 12 15:56:23 dev base_reth[2277506]: 2024-10-12T22:56:23.221331Z  INFO Executing stage pipeline_stages=1/14 stage=Headers checkpoint=20971399 target=None
Oct 12 15:56:23 dev base_reth[2277506]: 2024-10-12T22:56:23.238270Z  INFO Writing headers progress=10.00%
Oct 12 15:56:23 dev base_reth[2277506]: 2024-10-12T22:56:23.242712Z  INFO Writing headers progress=19.99%
Oct 12 15:56:23 dev base_reth[2277506]: 2024-10-12T22:56:23.246903Z  INFO Writing headers progress=29.99%
Oct 12 15:56:23 dev base_reth[2277506]: 2024-10-12T22:56:23.251124Z  INFO Writing headers progress=39.98%
Oct 12 15:56:23 dev base_reth[2277506]: 2024-10-12T22:56:23.255340Z  INFO Writing headers progress=49.98%
Oct 12 15:56:23 dev base_reth[2277506]: 2024-10-12T22:56:23.259554Z  INFO Writing headers progress=59.98%
Oct 12 15:56:23 dev base_reth[2277506]: 2024-10-12T22:56:23.263790Z  INFO Writing headers progress=69.97%
Oct 12 15:56:23 dev base_reth[2277506]: 2024-10-12T22:56:23.268034Z  INFO Writing headers progress=79.97%
Oct 12 15:56:23 dev base_reth[2277506]: 2024-10-12T22:56:23.272422Z  INFO Writing headers progress=89.97%
Oct 12 15:56:23 dev base_reth[2277506]: 2024-10-12T22:56:23.276795Z  INFO Writing headers progress=99.96%
Oct 12 15:56:23 dev base_reth[2277506]: 2024-10-12T22:56:23.276817Z  INFO Writing headers hash index total=20818
Oct 12 15:56:23 dev base_reth[2277506]: 2024-10-12T22:56:23.550055Z  INFO Writing headers hash index progress=10.00%
Oct 12 15:56:23 dev base_reth[2277506]: 2024-10-12T22:56:23.607804Z  INFO Status connected_peers=10 stage=Headers checkpoint=20971399 target=None
Oct 12 15:56:23 dev base_reth[2277506]: 2024-10-12T22:56:23.821243Z  INFO Writing headers hash index progress=19.99%
Oct 12 15:56:23 dev base_reth[2277506]: 2024-10-12T22:56:23.830943Z  INFO Static File Producer started targets=StaticFileTargets { headers: Some(20971400..=20971402), receipts: Some(20971400..=20971402), transactions: Some(20971400..=20971402) }
Oct 12 15:56:24 dev base_reth[2277506]: 2024-10-12T22:56:24.088976Z  INFO Writing headers hash index progress=29.99%
Oct 12 15:56:24 dev base_reth[2277506]: 2024-10-12T22:56:24.365830Z  INFO Writing headers hash index progress=39.98%
Oct 12 15:56:24 dev base_reth[2277506]: 2024-10-12T22:56:24.637369Z  INFO Writing headers hash index progress=49.98%
Oct 12 15:56:24 dev base_reth[2277506]: 2024-10-12T22:56:24.905215Z  INFO Writing headers hash index progress=59.98%
Oct 12 15:56:25 dev base_reth[2277506]: 2024-10-12T22:56:25.179205Z  INFO Writing headers hash index progress=69.97%
Oct 12 15:56:25 dev base_reth[2277506]: 2024-10-12T22:56:25.456249Z  INFO Writing headers hash index progress=79.97%
Oct 12 15:56:25 dev base_reth[2277506]: 2024-10-12T22:56:25.736831Z  INFO Writing headers hash index progress=89.97%
Oct 12 15:56:26 dev base_reth[2277506]: 2024-10-12T22:56:26.407883Z  INFO Writing headers hash index progress=99.96%
Oct 12 15:56:26 dev base_reth[2277506]: 2024-10-12T22:56:26.412719Z  INFO Finished stage pipeline_stages=1/14 stage=Headers checkpoint=20992217 target=None stage_progress=100.00%
Oct 12 15:56:27 dev base_reth[2277506]: 2024-10-12T22:56:27.373527Z  INFO Preparing stage pipeline_stages=2/14 stage=Bodies checkpoint=20971399 target=20992217
Oct 12 15:56:27 dev base_reth[2277506]: 2024-10-12T22:56:27.373534Z  INFO Downloading bodies count=20818 range=20971400..=20992217
Oct 12 15:56:27 dev base_reth[2277506]: 2024-10-12T22:56:27.628841Z ERROR Hook finished with error name=StaticFile error=Common(Provider(UnexpectedStaticFileBlockNumber(Transactions, 20971400, 20971401)))
Oct 12 15:56:27 dev base_reth[2277506]: 2024-10-12T22:56:27.629232Z  INFO Static File Producer started targets=StaticFileTargets { headers: None, receipts: Some(20971401..=20971402), transactions: Some(20971401..=20971402) }
Oct 12 15:56:29 dev base_reth[2277506]: 2024-10-12T22:56:29.484271Z ERROR Hook finished with error name=StaticFile error=Common(Provider(BlockBodyIndicesNotFound(20971401)))
Oct 12 15:56:29 dev base_reth[2277506]: 2024-10-12T22:56:29.484668Z  INFO Static File Producer started targets=StaticFileTargets { headers: None, receipts: Some(20971401..=20971402), transactions: Some(20971401..=20971402) }
Oct 12 15:56:31 dev base_reth[2277506]: 2024-10-12T22:56:31.619563Z ERROR Hook finished with error name=StaticFile error=Common(Provider(UnexpectedStaticFileBlockNumber(Transactions, 20971401, 20971402)))
Oct 12 15:56:31 dev base_reth[2277506]: 2024-10-12T22:56:31.620267Z  INFO Static File Producer started targets=StaticFileTargets { headers: None, receipts: Some(20971401..=20971402), transactions: Some(20971401..=20971402) }
Oct 12 15:56:33 dev base_reth[2277506]: 2024-10-12T22:56:33.650036Z ERROR Hook finished with error name=StaticFile error=Common(Provider(UnexpectedStaticFileBlockNumber(Transactions, 20971401, 20971402)))
Oct 12 15:56:33 dev base_reth[2277506]: 2024-10-12T22:56:33.650545Z  INFO Static File Producer started targets=StaticFileTargets { headers: None, receipts: Some(20971401..=20971402), transactions: Some(20971401..=20971402) }
Oct 12 15:56:33 dev base_reth[2277506]: 2024-10-12T22:56:33.650615Z  INFO Executing stage pipeline_stages=2/14 stage=Bodies checkpoint=20971399 target=20992217
Oct 12 15:56:33 dev base_reth[2277506]: 2024-10-12T22:56:33.660641Z ERROR Stage encountered a fatal error: database integrity error occurred: trying to append data to Transactions as block #20971400 but expected block #20971402 stage=Bodies
Oct 12 15:56:33 dev base_reth[2277506]: 2024-10-12T22:56:33.697340Z ERROR shutting down due to error
Oct 12 15:56:34 dev base_reth[2277506]: Error: database integrity error occurred: trying to append data to Transactions as block #20971400 but expected block #20971402
Oct 12 15:56:34 dev base_reth[2277506]: 
Oct 12 15:56:34 dev base_reth[2277506]: Caused by:
Oct 12 15:56:34 dev base_reth[2277506]:     trying to append data to Transactions as block #20971400 but expected block #20971402
Oct 12 15:56:34 dev base_reth[2277506]: 
Oct 12 15:56:34 dev base_reth[2277506]: Location:
Oct 12 15:56:34 dev base_reth[2277506]:     /project/crates/node/builder/src/launch/mod.rs:444:28
Oct 12 15:56:34 dev podman[2279455]: 2024-10-12 15:56:34.086904781 -0700 PDT m=+0.015922214 container died 2001d62d5764dfd485b220817044da3da318913680a1c0d2e3b5ad83ba5dd94f (image=ghcr.io/paradigmxyz/op-reth:latest, name=base_reth, org.opencontainers.image.source=https://github.com/paradigmxyz/reth, org.opencontainers.image.version=22.04, PODMAN_SYSTEMD_UNIT=base_reth.service, io.containers.autoupdate=registry, org.opencontainers.image.licenses=MIT OR Apache-2.0, org.opencontainers.image.ref.name=ubuntu)
Oct 12 15:56:34 dev podman[2279455]: 2024-10-12 15:56:34.105516907 -0700 PDT m=+0.034534340 container remove 2001d62d5764dfd485b220817044da3da318913680a1c0d2e3b5ad83ba5dd94f (image=ghcr.io/paradigmxyz/op-reth:latest, name=base_reth, pod_id=57a00d14d0f4fb4cb9956c61f0dc81f1928b201036fc4aaa45a5a2ae169eb374, PODMAN_SYSTEMD_UNIT=base_reth.service, io.containers.autoupdate=registry, org.opencontainers.image.licenses=MIT OR Apache-2.0, org.opencontainers.image.ref.name=ubuntu, org.opencontainers.image.source=https://github.com/paradigmxyz/reth, org.opencontainers.image.version=22.04)
Oct 12 15:56:34 dev systemd[2808]: base_reth.service: Main process exited, code=exited, status=1/FAILURE
Oct 12 15:56:34 dev systemd[2808]: base_reth.service: Failed with result 'exit-code'.
Oct 12 15:56:34 dev systemd[2808]: base_reth.service: Consumed 36.495s CPU time.
Oct 12 15:56:34 dev systemd[2808]: base_reth.service: Scheduled restart job, restart counter is at 1.

@BowTiedDevil
Copy link

BowTiedDevil commented Oct 12, 2024

The bad block (hash 0x7fd6dda911d2d5029a6026896f9c9ca13fc51e28ad7b6be5ae3922824cd4a705) came from op-node at 15:45:36.

That same block is marked as ignored because of a mismatched parent hash at 15:45:37.

Here are the logs during that 10s window:

Oct 12 15:45:30 dev base_rollup[1298011]: t=2024-10-12T22:45:30+0000 lvl=info msg="disconnected from peer" peer=16Uiu2HAm31V9u7TGnQegxFb6FoPywgupssgvq53RKBt3xHj8PDu7 addr=/ip4/5.9.155.245/tcp/1275
Oct 12 15:45:30 dev base_rollup[1298011]: t=2024-10-12T22:45:30+0000 lvl=info msg="generated attributes in payload queue" txs=132 timestamp=1728732147
Oct 12 15:45:30 dev base_rollup[1298011]: t=2024-10-12T22:45:30+0000 lvl=info msg="connected to peer" peer=16Uiu2HAmPDDY1Ut65wGyfAuXtPNfkvbyZodCMvd24MafsBGMRfRS addr=/ip4/188.64.149.12/tcp/45366
Oct 12 15:45:30 dev base_rollup[1298011]: t=2024-10-12T22:45:30+0000 lvl=info msg="Starting P2P sync client event loop" peer=16Uiu2HAmPDDY1Ut65wGyfAuXtPNfkvbyZodCMvd24MafsBGMRfRS
Oct 12 15:45:31 dev base_rollup[1298011]: t=2024-10-12T22:45:31+0000 lvl=info msg="disconnected from peer" peer=16Uiu2HAmPDDY1Ut65wGyfAuXtPNfkvbyZodCMvd24MafsBGMRfRS addr=/ip4/188.64.149.12/tcp/45366
Oct 12 15:45:32 dev base_rollup[1298011]: t=2024-10-12T22:45:32+0000 lvl=info msg="Inserted block" hash=0xa6f1e54769a87cd3f9dc04315e5fd33bdeba3193401b1ff66239abe236f2df67 number=20971400 state_root=0x46de26aba88050e4255c12319532fb82ee10c638148297aca6132921abc15e6d timestamp=1728732147 parent=0x11fd9a2647755cfc4c86b27050e91f3adce3604bce1f1c73b8b14a8ba64c49b3 prev_randao=0x0582ccfe34b0720fafbbe8a1b653a68cea06ee0fe3cfcbbe4ba1ad16ce1f0f05 fee_recipient=0x4200000000000000000000000000000000000011 txs=132 last_in_span=false derived_from=0x1df98cf458532373c012ef21673a9eb4b92e4826430389b87b005e3802801bb5:20949197
Oct 12 15:45:33 dev base_rollup[1298011]: t=2024-10-12T22:45:33+0000 lvl=info msg="generated attributes in payload queue" txs=139 timestamp=1728732149
Oct 12 15:45:34 dev base_rollup[1298011]: t=2024-10-12T22:45:34+0000 lvl=info msg="Inserted block" hash=0x377039ab4fc9b631e0f587690d837c6297550f23b2cf8e3ef885204617ebc1c1 number=20971401 state_root=0x04897289e465dde9f6057837beee5603f13f69ac74d0d17806c6e85f6bc77453 timestamp=1728732149 parent=0xa6f1e54769a87cd3f9dc04315e5fd33bdeba3193401b1ff66239abe236f2df67 prev_randao=0x0582ccfe34b0720fafbbe8a1b653a68cea06ee0fe3cfcbbe4ba1ad16ce1f0f05 fee_recipient=0x4200000000000000000000000000000000000011 txs=139 last_in_span=true derived_from=0x1df98cf458532373c012ef21673a9eb4b92e4826430389b87b005e3802801bb5:20949197
Oct 12 15:45:35 dev base_rollup[1298011]: t=2024-10-12T22:45:35+0000 lvl=info msg="Found next batch" batch_type=SpanBatch batch_timestamp=1728732151 parent_check=0x377039ab4fc9b631e0f587690d837c6297550f23 origin_check=0x677501d339f4fd43e74d9c6b8e4ab0711bd5b08a start_epoch_number=20949179 end_epoch_number=20949179 block_count=1 txs=0 compression_algo=brotli
Oct 12 15:45:35 dev base_rollup[1298011]: t=2024-10-12T22:45:35+0000 lvl=info msg="generated attributes in payload queue" txs=193 timestamp=1728732151
Oct 12 15:45:36 dev base_rollup[1298011]: t=2024-10-12T22:45:36+0000 lvl=info msg="Inserted block" hash=0x7fd6dda911d2d5029a6026896f9c9ca13fc51e28ad7b6be5ae3922824cd4a705 number=20971402 state_root=0xdb1bd8d61865b9ec3e62137c8ac279bc791c20de8ab5e3764042c3ed39bdec99 timestamp=1728732151 parent=0x377039ab4fc9b631e0f587690d837c6297550f23b2cf8e3ef885204617ebc1c1 prev_randao=0x0582ccfe34b0720fafbbe8a1b653a68cea06ee0fe3cfcbbe4ba1ad16ce1f0f05 fee_recipient=0x4200000000000000000000000000000000000011 txs=193 last_in_span=true derived_from=0x1df98cf458532373c012ef21673a9eb4b92e4826430389b87b005e3802801bb5:20949197
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x6328bf106719401d2fed075c6252443fc36bac0d9a4fcc199bc08866ed6e8c8f:20978098
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0x6328bf106719401d2fed075c6252443fc36bac0d9a4fcc199bc08866ed6e8c8f:20978098
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Received signed execution payload from p2p" id=0xaa826db14008caf750407d17a7f8e6ddd86f156968a2c590ec21d3d989e0d539:20991881 peer=16Uiu2HAmG6c7fyVT2tfhN4uKgwQDtEDJ1D55dUzeJAh3JdA9GyrY txs=191
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Advancing bq origin" origin=0x034e5369fad7398fcda43e97b95e77bc83c79d43a72cb3fa1cebf75433ea955c:20949198 originBehind=false
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x5d66fdf2ce4b538a54a2096c2500be8bd606278eb987d3a8c857a54f6658f73e:20978097
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Received signed execution payload from p2p" id=0xcb5be55677665171b59bfd00364fa313b356bcd754f3759a0cbf5f32cc163f77:20991882 peer=16Uiu2HAmG6c7fyVT2tfhN4uKgwQDtEDJ1D55dUzeJAh3JdA9GyrY txs=169
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x559ed2550095c4513d74f29292dc290fa56b2e3a497df77d33265031a85de20c:20991873
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0x5d66fdf2ce4b538a54a2096c2500be8bd606278eb987d3a8c857a54f6658f73e:20978097
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="processing L2 range request" target=20971402 end=0x5d66fdf2ce4b538a54a2096c2500be8bd606278eb987d3a8c857a54f6658f73e:20978097 rangeReqId=3751
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Advancing bq origin" origin=0x21c79ba97935de8fff920dd5a95939836302ea7a5ef507ba9b9fa1417e526c94:20949199 originBehind=false
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Received signed execution payload from p2p" id=0xc675cbce557b00efb6e33489829ca28e3aab0fab72bc488e74e449723d10e1a2:20991883 peer=16Uiu2HAmG6c7fyVT2tfhN4uKgwQDtEDJ1D55dUzeJAh3JdA9GyrY txs=201
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="no peers ready to handle block requests for more P2P requests for L2 block history" target=20971402 end=0x5d66fdf2ce4b538a54a2096c2500be8bd606278eb987d3a8c857a54f6658f73e:20978097 current=20977936
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=warn msg="failed p2p sync request" peer=16Uiu2HAmVdrKKKbUTgnHh3GBwhQSH6cjEXXcEX4RKoSQfiR2Angk num=20978095 err="peer failed to serve request with code 1: not found"
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=warn msg="cancelling p2p sync range request" peer=16Uiu2HAmVdrKKKbUTgnHh3GBwhQSH6cjEXXcEX4RKoSQfiR2Angk rangeReqId=3751
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0xec6a5c8c47eed7ae82c37d1b005b20ae3eb400ebcf67f628ab252092b8164a11:20978096
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0xec6a5c8c47eed7ae82c37d1b005b20ae3eb400ebcf67f628ab252092b8164a11:20978096
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Received signed execution payload from p2p" id=0xca8ae283d827a68db1efa70e379101abcadacb267ca20e4c542d00e5444925a6:20991884 peer=16Uiu2HAmFDv4gBrQcSyyLGSVNWuotxmUCQkHbLEMbdj7UbFrXua5 txs=168
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Advancing bq origin" origin=0x713e9daa48d61b895a478a4bfb615a14048eabd66596d53049345e2aa37faf9e:20949200 originBehind=false
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=warn msg="failed p2p sync request" peer=16Uiu2HAkuxhZ4SKCp2z9sZUWcYV5RoYagZ7dixag9XuUrhs5cYor num=20978088 err="peer failed to serve request with code 1: not found"
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=warn msg="cancelling p2p sync range request" peer=16Uiu2HAkuxhZ4SKCp2z9sZUWcYV5RoYagZ7dixag9XuUrhs5cYor rangeReqId=3751
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0xf2bbf370f5a65bcbfa34a647fcd8b1439cfc995c31a618d2791c20efa7c9c132:20991874
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0xb7508a3fa112b044b641ed5a286760b7b2504b5c99b195802f67c2e488a08047:20978100
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Received signed execution payload from p2p" id=0x4ef9591025151efda3950dcddb9a825da48c50bf41bba8f8378caf103ee3393e:20991885 peer=16Uiu2HAmG6c7fyVT2tfhN4uKgwQDtEDJ1D55dUzeJAh3JdA9GyrY txs=160
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Advancing bq origin" origin=0x4001e4f1910f31e46694d7ee8c3dfe377107526d05e2ddb0ae36c268d6aafb62:20949201 originBehind=false
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=warn msg="failed p2p sync request" peer=16Uiu2HAmAvENHM6qLrmgyr1acFhWKT4AAoTRibusb5wHe3FXvhNF num=20978076 err="failed to open stream: failed to negotiate protocol: protocols not supported: [/opstack/req/payload_by_number/8453/0]"
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=warn msg="failed p2p sync request" peer=16Uiu2HAmA7oa6FfeWER5iZ3m912p3CcoqS6BwBsZKJy2avGtDq2v num=20978079 err="failed to open stream: failed to negotiate protocol: protocols not supported: [/opstack/req/payload_by_number/8453/0]"
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=warn msg="failed p2p sync request" peer=16Uiu2HAmTUiRQw5PqmBqAy2TsgrLGkNvNkEnysrWEEpTZ1tDCFtd num=20978081 err="failed to open stream: failed to negotiate protocol: protocols not supported: [/opstack/req/payload_by_number/8453/0]"
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=warn msg="failed p2p sync request" peer=16Uiu2HAmT7T4nJaQbpAV3UWKeY2JMHctqLoUW1QvZqpGyUdVCDA7 num=20978078 err="peer failed to serve request with code 1: not found"
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=warn msg="cancelling p2p sync range request" peer=16Uiu2HAmT7T4nJaQbpAV3UWKeY2JMHctqLoUW1QvZqpGyUdVCDA7 rangeReqId=3751
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=warn msg="failed p2p sync request" peer=16Uiu2HAm9YfvJ8tuD2xH8fz2jAA7KMujgFYrjgcqU2yjB4brBdRk num=20978080 err="peer failed to serve request with code 1: not found"
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=warn msg="cancelling p2p sync range request" peer=16Uiu2HAm9YfvJ8tuD2xH8fz2jAA7KMujgFYrjgcqU2yjB4brBdRk rangeReqId=3751
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Advancing bq origin" origin=0x54828f45db93d2c5bcf00762ffbb1e25dce9dd7dbd19b745340279a41d389f57:20949202 originBehind=false
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Advancing bq origin" origin=0x6d87ac0087cb1303be1ae8ee55f53010886f2de7a275d39bb5f1cc8c0ff36cc7:20949203 originBehind=false
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="created new channel" origin=0x6d87ac0087cb1303be1ae8ee55f53010886f2de7a275d39bb5f1cc8c0ff36cc7:20949203 channel=6a07754eb04950ae651d6132bbdf8c4d length=130020 frame_number=0 is_last=false
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x0e7d6536cd0132f86506719f6a80f068fbfd0e62be398a498329890eeb81559b:20991875
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0xb280737c88f4fe8322cba2334d217bee99230b5af8abf135be3fd71ce37054b5:20978101
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0xf635908b6fba724809be366ee561980f97ff07bc35559ee46c3092744139d9f7:20991876
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0x86b8acb9dbcd1dabfc15ef5e4482758d35cd50595350eac9215e1d3838beb3ae:20978102
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Received signed execution payload from p2p" id=0x38ba9292f7a8012c646d709f8e19f061d8a0fe8f622763d3126021fe550c1320:20991886 peer=16Uiu2HAmSYvBi6hczyhZaM41q2bjqxPUnquCxm1CBX4MKahMezC4 txs=191
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Reading channel" channel=6a07754eb04950ae651d6132bbdf8c4d frames=5
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Received signed execution payload from p2p" id=0xc3ac4e80e65b70a3666377f5904c6145f0924933bf2b0b089ab1540545ce0e7f:20991887 peer=16Uiu2HAm9YfvJ8tuD2xH8fz2jAA7KMujgFYrjgcqU2yjB4brBdRk txs=152
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=warn msg="ignoring batch with mismatching parent hash" batch_type=SpanBatch batch_timestamp=1728732153 parent_check=0xc363742394eb1a864ccc27692b3bd088cd037034 origin_check=0x7abce1c1a6afdf74748d95d233c6c14db7a44d40 start_epoch_number=20949180 end_epoch_number=20949180 block_count=3 txs=0 parent_block=0x7fd6dda911d2d5029a6026896f9c9ca13fc51e28ad7b6be5ae3922824cd4a705
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0xa213a0a21575afe3a4aa7296388900638914b6bc595070c1a3a900c3df9ba960:20991877
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0x56f496ccdb38cfdba2e3aeb150ba2692abb5b8fd541fbf8136ae7c37e1fc3036:20978103
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Received signed execution payload from p2p" id=0xdafc4420cf15c80e431c6e97f89c7604e94bb469398d9df9c63f0cb3e709ec57:20991888 peer=16Uiu2HAmSYvBi6hczyhZaM41q2bjqxPUnquCxm1CBX4MKahMezC4 txs=207
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x44d0f0fff696893ce1e42f54804a0afb4408e7ab109ce1fe75c1066017822229:20991878
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0x8944be6e23d654283903f0126a0227397fb127d846734c7f6eca2238de664d56:20978104
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0xa141bb019d94e9900cc23a1547eb6b97e9dbb367fe4b43892a4a495ea066ab0d:20991879
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0xe30e0850520d9fcfda73b26620733e73bb6875d5da9fe789a824e643afa2313a:20978105
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x66de6eab69f6f6f6339210f213d848b21aa9f724abba56bec7c16ec8a267e2ef:20991880
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0xbdc318e89f64f4534ec92f99dd0db087b99806beabcc23acf7f04751f4576899:20978106
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0xaa826db14008caf750407d17a7f8e6ddd86f156968a2c590ec21d3d989e0d539:20991881
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Received signed execution payload from p2p" id=0x138b7fe5b5c3c6bafb8c4a36a0541d2dd160e679e4b6d0fc722ff5a98fb62201:20991889 peer=16Uiu2HAmAvENHM6qLrmgyr1acFhWKT4AAoTRibusb5wHe3FXvhNF txs=225
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0x5980f1ef67555fd88d7e286c6a7e8399722aef081cbcffc8ed2f4f16ebbf5897:20978107
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Received signed execution payload from p2p" id=0x2dea31ac38a00c75eb97fccbdc860b10e3c891f8a4d43c73d50599f10c5b109d:20991890 peer=16Uiu2HAmA7oa6FfeWER5iZ3m912p3CcoqS6BwBsZKJy2avGtDq2v txs=150
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Received signed execution payload from p2p" id=0x98af27f170e351f257b900c92805d46e4a5c81ce9e5f660a0c9060c9a24002ab:20991891 peer=16Uiu2HAmSYvBi6hczyhZaM41q2bjqxPUnquCxm1CBX4MKahMezC4 txs=193
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0xcb5be55677665171b59bfd00364fa313b356bcd754f3759a0cbf5f32cc163f77:20991882
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Received signed execution payload from p2p" id=0x12d543ad50f8133aca2f795589dc8502db28cc9dcd38d7fa0018b24532a62a8e:20991892 peer=16Uiu2HAmPNKL6t7SMDA7bPgnihY3Z6jHjjL465QZZuTYgMSsnmF2 txs=163
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Received signed execution payload from p2p" id=0xc4b4b3a4b7700531b2a0917f432464124fc69a73594aaf27507f8701e5ca17a1:20991893 peer=16Uiu2HAmG6c7fyVT2tfhN4uKgwQDtEDJ1D55dUzeJAh3JdA9GyrY txs=255
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0xc57f3fb6a5a93804fecbfaff397025a4cd4aefda10f6642f64ca3f287f8dab2f:20978108
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0xc675cbce557b00efb6e33489829ca28e3aab0fab72bc488e74e449723d10e1a2:20991883
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0xcc8398a805fae4c4c9b163bcf9b6cfb802eefae4173dc15fab69700eb4c47829:20978109
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Received signed execution payload from p2p" id=0x7c9f9ad167c4011d9f57b50ca97456d3c8df9b6924332faeb2b8291522b5eef2:20991894 peer=16Uiu2HAm9YfvJ8tuD2xH8fz2jAA7KMujgFYrjgcqU2yjB4brBdRk txs=195
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=warn msg="failed p2p sync request" peer=16Uiu2HAkvVbewYytX4yCaHyC6fMSE4aqsvrnjjAEhMosa61eZiT1 num=20978090 err="peer failed to serve request with code 3: unknown error"
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=warn msg="failed p2p sync request" peer=16Uiu2HAmPxTPDUkAcb2FHX2qnTnkppmgkMUdUjL2oCpVmVPcAzrZ num=20978075 err="peer failed to serve request with code 1: not found"
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=warn msg="cancelling p2p sync range request" peer=16Uiu2HAmPxTPDUkAcb2FHX2qnTnkppmgkMUdUjL2oCpVmVPcAzrZ rangeReqId=3751
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0xca8ae283d827a68db1efa70e379101abcadacb267ca20e4c542d00e5444925a6:20991884
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0x2c19b12e1999b887e1a3adc7113a1b0c2c824f38609609ffe36967fb27e76d5b:20978110
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x4ef9591025151efda3950dcddb9a825da48c50bf41bba8f8378caf103ee3393e:20991885
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0x2e7e7bf45cbc8b44bdab5fcd2aa299f2735a9ec13f6dc6678ee81039ceefd50c:20978111
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x38ba9292f7a8012c646d709f8e19f061d8a0fe8f622763d3126021fe550c1320:20991886
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0xd487b410c2f4df4043b1d0c50b2b1157f4c124534ab88c00597eab814bc12e07:20978112
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0x13cfb222eabbd8b225928212c6f124e18489815e4a0b9883242351c334ad7aab:20978113
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0xc3ac4e80e65b70a3666377f5904c6145f0924933bf2b0b089ab1540545ce0e7f:20991887
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0xfd05fdfc66915686665b4aed2d3189dc4afdca4c3be8e0f0b62e1b8e15cb5515:20978114
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0xdafc4420cf15c80e431c6e97f89c7604e94bb469398d9df9c63f0cb3e709ec57:20991888
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Advancing bq origin" origin=0x40c16114e51dad4c31f741d4f192ac47959dc4fc17e14eabc432c55e4b41c1af:20949204 originBehind=false
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Received signed execution payload from p2p" id=0x7b05377f9fe840785a23bcc43927e510de165c3a92882f100e2226bd863990d5:20978094 peer=16Uiu2HAm3U75vFLF4gV2E2yHdcFf2XZhoYUEc7REAajHCv221hbB txs=130
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Received signed execution payload from p2p" id=0xb863f06e5f524bf84cdd80f54a47d531510661f0acd457a7ae4669c6eb345e75:20978093 peer=16Uiu2HAmSYvBi6hczyhZaM41q2bjqxPUnquCxm1CBX4MKahMezC4 txs=152
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x138b7fe5b5c3c6bafb8c4a36a0541d2dd160e679e4b6d0fc722ff5a98fb62201:20991889
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0xf527ffa1664c4c30495498feecedc3744c4f1b28d220c899f22ed14ed5e27724:20978115
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0x046a3fc3586b61743549fb64f312281b6334e02265da43e405ea1c72a04f707c:20978116
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Advancing bq origin" origin=0x6bdc4ace9e03997a0c2c53a7ec88b5fa8bcc19158045e31c5845ef3fec23913a:20949205 originBehind=false
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Received signed execution payload from p2p" id=0x6c6b40c76563723db0e2fc9b40656f8f870b372724f12bc1cac1dc46ee4f5474:20978092 peer=16Uiu2HAkzP4HST96mfUG8NFSSxQXzmCbZXhHJHNZnBAXwCevneoy txs=136
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Received signed execution payload from p2p" id=0x8e93a9dd659a44fea939a6ad9e5b25d3ca0a1c96d900ed87da24134c7f2c2440:20978091 peer=16Uiu2HAmS2tvivC1aPf5bHKHTkWFEpAMgkHuuP7uA1LErhCRjASB txs=129
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Advancing bq origin" origin=0xb9599f2e72d8a31b2bf27bd9cd4aa43e746d74027882bcb4038f282ae7829cc6:20949206 originBehind=false
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Advancing bq origin" origin=0x78e51bcdf8b22ac86121bf078fe1ce50dc01fccab795483a6a6e265f1cf7c7c7:20949207 originBehind=false
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x2dea31ac38a00c75eb97fccbdc860b10e3c891f8a4d43c73d50599f10c5b109d:20991890
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0xf79bab50645b18f0ead17427be3c3dd0a691008e662054a0c0bc69d21b344335:20978117
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Advancing bq origin" origin=0x9e88401e0ead3f1e48dadf6eb1f4522018e039851061e057713b00dfe2d801ce:20949208 originBehind=false
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Received signed execution payload from p2p" id=0x7d913450bc6db0eb3005a52f140e61bffcc45b2d09de2a289ce7d2e2c8c08e8c:20991895 peer=16Uiu2HAm3U75vFLF4gV2E2yHdcFf2XZhoYUEc7REAajHCv221hbB txs=177
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x98af27f170e351f257b900c92805d46e4a5c81ce9e5f660a0c9060c9a24002ab:20991891
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0x4421d79411870cd71f829869f1ab39a6a0621862a21ac66d9a4e6de188146569:20978118
Oct 12 15:45:37 dev base_rollup[1298011]: t=2024-10-12T22:45:37+0000 lvl=info msg="Advancing bq origin" origin=0x8ec1dae0c89788a4cd97116918874a078994b26e9d0cb783e41085d3bf863245:20949209 originBehind=false
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="created new channel" origin=0x8ec1dae0c89788a4cd97116918874a078994b26e9d0cb783e41085d3bf863245:20949209 channel=4e977efd6362ead953181a9443a11125 length=130020 frame_number=0 is_last=false
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x12d543ad50f8133aca2f795589dc8502db28cc9dcd38d7fa0018b24532a62a8e:20991892
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0xc4b4b3a4b7700531b2a0917f432464124fc69a73594aaf27507f8701e5ca17a1:20991893
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0xf903e232e1049293ed723a63ca395efdbe9bab3791f9e79a6a49e4b4c434d8a2:20978119
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0x32846fd8a3ce51f39e92bfd41b841337a9219e819557f2e0eebab78d6bc49fc3:20978120
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0x9018051931e8a44b88e3420f147f6e9293c38ac5c8031f47253fa6372d709a3f:20978121
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x7c9f9ad167c4011d9f57b50ca97456d3c8df9b6924332faeb2b8291522b5eef2:20991894
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x7b05377f9fe840785a23bcc43927e510de165c3a92882f100e2226bd863990d5:20978094
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0x7b05377f9fe840785a23bcc43927e510de165c3a92882f100e2226bd863990d5:20978094
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0xb863f06e5f524bf84cdd80f54a47d531510661f0acd457a7ae4669c6eb345e75:20978093
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0xb863f06e5f524bf84cdd80f54a47d531510661f0acd457a7ae4669c6eb345e75:20978093
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x6c6b40c76563723db0e2fc9b40656f8f870b372724f12bc1cac1dc46ee4f5474:20978092
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0x6c6b40c76563723db0e2fc9b40656f8f870b372724f12bc1cac1dc46ee4f5474:20978092
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Reading channel" channel=4e977efd6362ead953181a9443a11125 frames=5
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x8e93a9dd659a44fea939a6ad9e5b25d3ca0a1c96d900ed87da24134c7f2c2440:20978091
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0x8e93a9dd659a44fea939a6ad9e5b25d3ca0a1c96d900ed87da24134c7f2c2440:20978091
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0x7d913450bc6db0eb3005a52f140e61bffcc45b2d09de2a289ce7d2e2c8c08e8c:20991895
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Dropping payload from payload queue because the payload queue is too large" id=0x8660f26a98b0176454f98682b65810b409429daf45f5ffb69da9708efe35c8d0:20978122
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Received signed execution payload from p2p" id=0xec6a5c8c47eed7ae82c37d1b005b20ae3eb400ebcf67f628ab252092b8164a11:20978096 peer=16Uiu2HAmFDv4gBrQcSyyLGSVNWuotxmUCQkHbLEMbdj7UbFrXua5 txs=221
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Optimistically queueing unsafe L2 execution payload" id=0xec6a5c8c47eed7ae82c37d1b005b20ae3eb400ebcf67f628ab252092b8164a11:20978096
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=warn msg="Could not add unsafe payload" id=0xec6a5c8c47eed7ae82c37d1b005b20ae3eb400ebcf67f628ab252092b8164a11:20978096 timestamp=1728745539 err="cannot add duplicate payload 0xec6a5c8c47eed7ae82c37d1b005b20ae3eb400ebcf67f628ab252092b8164a11:20978096"
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Advancing bq origin" origin=0x0c1caccfa2b46bb695d98cc2233021474e22d451ff5d2787e6197782634f08c5:20949210 originBehind=false
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Advancing bq origin" origin=0x6dd77dc023d8a66b9ed037b5d97768950c1eb80b3a7ad9827bd40c498c8beb54:20949211 originBehind=false
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Advancing bq origin" origin=0x670cf02fc1a42dcfd39ef30c6473d3dd40d9894d3fa5d795d8325383072bfc92:20949212 originBehind=false
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Advancing bq origin" origin=0x39ccb035d23a7a99666c394bf6fd65c4e5b0aa2a61350a0943bcc28eb73fac78:20949213 originBehind=false
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Advancing bq origin" origin=0x31ab0972de6f5096e539d46f7004c54d67c1c9b127adf89d0c52ccfa7bca1a8c:20949214 originBehind=false
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Advancing bq origin" origin=0xdf61f04f5bfa8ccdaa1bbe215f42582949b526f00a95f1e36962adf8636e4719:20949215 originBehind=false
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Advancing bq origin" origin=0xc0fac1a71154a9582c2aecd0ea00baa677021e95c04c9c0c6c9061ea25f21a8c:20949216 originBehind=false
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="created new channel" origin=0xc0fac1a71154a9582c2aecd0ea00baa677021e95c04c9c0c6c9061ea25f21a8c:20949216 channel=473ad359f913ff5cd909c5257d103283 length=130020 frame_number=0 is_last=false
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Reading channel" channel=473ad359f913ff5cd909c5257d103283 frames=5
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Advancing bq origin" origin=0xd29c49287a267e0c32abd2bcaa354208f33e9d44c72ddef1e121a59c4f1ccef7:20949217 originBehind=false
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Advancing bq origin" origin=0x51a342b8bdaaf2c030908da658cfb0f0fa3cb506b59354e9d7fa81134d7f64b4:20949218 originBehind=false
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Advancing bq origin" origin=0xc8d0eb081d0b9feb52822588fae93e8b7e86369eaefcd786a8f5be6ab95cf43d:20949219 originBehind=false
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Advancing bq origin" origin=0xe02ac51db21de8564a8697a59de73f0cde8388213c04ecd09a748b547ae5f27b:20949220 originBehind=false
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Advancing bq origin" origin=0xb5e8d1e8286159b3cc8608fb70dc85cda52554701e4b617fa74b7de42148533b:20949221 originBehind=false
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="created new channel" origin=0xb5e8d1e8286159b3cc8608fb70dc85cda52554701e4b617fa74b7de42148533b:20949221 channel=532669858112870f153c1c00306298e1 length=130020 frame_number=0 is_last=false
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Reading channel" channel=532669858112870f153c1c00306298e1 frames=5
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Advancing bq origin" origin=0x3ca4b646396ae5e0d0ff898d313f64960d58f17ea090a51216d2c83f78a1f117:20949222 originBehind=false
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Advancing bq origin" origin=0x0444364cab9e6e2be1a978c408f26962877ce7875efe9217f194541af0738c75:20949223 originBehind=false
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Advancing bq origin" origin=0x435aa33646a59d56f299d647788a7b9d8451fc19a7a16baa1fdaba132b37147d:20949224 originBehind=false
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Advancing bq origin" origin=0x155d8d79710d9021a5b204c19e10565ae7b5c4d2a661125e2d9b9fca728e4d4a:20949225 originBehind=false
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Advancing bq origin" origin=0xfa0f837272708d515539e2aaa3a51280e197e2c513f22fe329e6b29d93d53393:20949226 originBehind=false
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Advancing bq origin" origin=0x39b9851bc1f10c0bd6dc98fadf65b85244b4596c48e8b0cb96dcd0b3d6beb9ff:20949227 originBehind=false
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="created new channel" origin=0x39b9851bc1f10c0bd6dc98fadf65b85244b4596c48e8b0cb96dcd0b3d6beb9ff:20949227 channel=a7683f742529f688ecef34b695c2f830 length=130020 frame_number=0 is_last=false
Oct 12 15:45:38 dev base_rollup[1298011]: t=2024-10-12T22:45:38+0000 lvl=info msg="Reading channel" channel=a7683f742529f688ecef34b695c2f830 frames=5
Oct 12 15:45:39 dev base_rollup[1298011]: t=2024-10-12T22:45:39+0000 lvl=info msg="Advancing bq origin" origin=0x3c2a0ff9b4f46556ee133f5369a30b90fc6f9503ec4c89987b5dde77687287d7:20949228 originBehind=false
Oct 12 15:45:39 dev base_rollup[1298011]: t=2024-10-12T22:45:39+0000 lvl=info msg="Advancing bq origin" origin=0x8bed1b91a35c8d6fd6005b64849478a9cbef8028e2e8b9b8bf2f9c8d79181ffa:20949229 originBehind=false
Oct 12 15:45:39 dev base_rollup[1298011]: t=2024-10-12T22:45:39+0000 lvl=info msg="Advancing bq origin" origin=0xde9fd51ed2fec09e5ac20a0175ccc772ae2e9465961fc16f3fb56fbe548f718b:20949230 originBehind=false
Oct 12 15:45:39 dev base_rollup[1298011]: t=2024-10-12T22:45:39+0000 lvl=info msg="Advancing bq origin" origin=0x0a3b3a809b05742097d6724ab600f1a7479be2a5f9cc54cbf861dde547d25c5a:20949231 originBehind=false
Oct 12 15:45:39 dev base_rollup[1298011]: t=2024-10-12T22:45:39+0000 lvl=info msg="Advancing bq origin" origin=0xfb27ab9b5156a5c67cc4df4a339363d5eee628bd53a577ac97789b2643970755:20949232 originBehind=false
Oct 12 15:45:39 dev base_rollup[1298011]: t=2024-10-12T22:45:39+0000 lvl=info msg="Advancing bq origin" origin=0x4eda0aadd94903c190cb2d76f94492177623011d0170b955988c941fca60252b:20949233 originBehind=false
Oct 12 15:45:39 dev base_rollup[1298011]: t=2024-10-12T22:45:39+0000 lvl=info msg="Advancing bq origin" origin=0x34dd062fb50108e9e66e07deddf70f065b2c7459eea429db7560fd2a592bf9f4:20949234 originBehind=false
Oct 12 15:45:39 dev base_rollup[1298011]: t=2024-10-12T22:45:39+0000 lvl=info msg="created new channel" origin=0x34dd062fb50108e9e66e07deddf70f065b2c7459eea429db7560fd2a592bf9f4:20949234 channel=4d05920447d5a984c030f3e410b3789a length=130020 frame_number=0 is_last=false
Oct 12 15:45:39 dev base_rollup[1298011]: t=2024-10-12T22:45:39+0000 lvl=info msg="Reading channel" channel=4d05920447d5a984c030f3e410b3789a frames=5
Oct 12 15:45:39 dev base_rollup[1298011]: t=2024-10-12T22:45:39+0000 lvl=info msg="Advancing bq origin" origin=0x96f3b1e79cb51d2aa42394bbfd63fa1e9c535052e39da5f66e1d8ef0cbd38ebb:20949235 originBehind=false
Oct 12 15:45:39 dev base_rollup[1298011]: t=2024-10-12T22:45:39+0000 lvl=info msg="Advancing bq origin" origin=0xa8c71e9caae37bfd846408027bb671b44fa5b2b0e4a4be3a6a293d0fdf04b1b7:20949236 originBehind=false
Oct 12 15:45:39 dev base_rollup[1298011]: t=2024-10-12T22:45:39+0000 lvl=info msg="Advancing bq origin" origin=0x2c582b41e5c61751b0abf0e1769a83af343bdeef0a6e2ccd6c37254ff1465020:20949237 originBehind=false
Oct 12 15:45:39 dev base_rollup[1298011]: t=2024-10-12T22:45:39+0000 lvl=info msg="Advancing bq origin" origin=0x2d3b16e3a71c95142ecb64dc21f54bf57ea8e2846d7d35d594bf6a83b71a499d:20949238 originBehind=false
Oct 12 15:45:39 dev base_rollup[1298011]: t=2024-10-12T22:45:39+0000 lvl=info msg="Advancing bq origin" origin=0x90294a9b26f4de5080c68dbba55037f7c7d9ce3c6ba590f88417a08746582908:20949239 originBehind=false
Oct 12 15:45:39 dev base_rollup[1298011]: t=2024-10-12T22:45:39+0000 lvl=info msg="Advancing bq origin" origin=0xbcce206566a1d97b05bf3002e19cfef467d3dad8d84f86d95bfd415f4cd3277a:20949240 originBehind=false
Oct 12 15:45:39 dev base_rollup[1298011]: t=2024-10-12T22:45:39+0000 lvl=info msg="created new channel" origin=0xbcce206566a1d97b05bf3002e19cfef467d3dad8d84f86d95bfd415f4cd3277a:20949240 channel=0f06b5eb690ab82ba6edad8fc9162ad8 length=130020 frame_number=0 is_last=false
Oct 12 15:45:39 dev base_rollup[1298011]: t=2024-10-12T22:45:39+0000 lvl=info msg="Reading channel" channel=0f06b5eb690ab82ba6edad8fc9162ad8 frames=5
Oct 12 15:45:39 dev base_rollup[1298011]: t=2024-10-12T22:45:39+0000 lvl=info msg="Advancing bq origin" origin=0x39e9e6127a26089182def5c918baa6c343f75072e92094eccd124842d5bdc262:20949241 originBehind=false
Oct 12 15:45:39 dev base_rollup[1298011]: t=2024-10-12T22:45:39+0000 lvl=info msg="Advancing bq origin" origin=0x7340d094e9f7b74b840e0ec6d41fc914efac449a7ae0863311063bc6e985f8f1:20949242 originBehind=false
Oct 12 15:45:39 dev base_rollup[1298011]: t=2024-10-12T22:45:39+0000 lvl=info msg="Advancing bq origin" origin=0xdfd549901b55f1347f1f04985a9b61f269576b14eb2d1f44753e26442976d77f:20949243 originBehind=false
Oct 12 15:45:39 dev base_rollup[1298011]: t=2024-10-12T22:45:39+0000 lvl=info msg="Advancing bq origin" origin=0xae2db29c1794e6e244b89eb3d3638514b77a32377a6e57afcab9b1569088bd93:20949244 originBehind=false

@DaveWK
Copy link
Author

DaveWK commented Oct 13, 2024

I appear to be slwoly making through my first pass of the Execution stage on commit 1ba631b
Latest log:
stage=Execution checkpoint=18848508 target=20897633 stage_progress=74.20%

This has been running ~ 2 days now so let me know if there's recent commits that would be good to pick up, but would rather not restart from scratch (losing 2 days sync) unless there's relevant commits

@DaveWK
Copy link
Author

DaveWK commented Oct 13, 2024

Seems possibly relevant: #11651

@jsvisa
Copy link
Contributor

jsvisa commented Oct 18, 2024

I met the similar issue on ethereum mainnet, logs as below:

2024-10-18T02:26:07.282319Z  INFO Finished stage pipeline_stages=7/12 stage=StorageHashing checkpoint=20988266 target=20988266 stage_progress=100.00%
2024-10-18T02:26:07.282350Z  INFO Preparing stage pipeline_stages=8/12 stage=MerkleExecute checkpoint=20988234 target=20988266
2024-10-18T02:26:07.282363Z  INFO Executing stage pipeline_stages=8/12 stage=MerkleExecute checkpoint=20988234 target=20988266
thread 'tokio-runtime-worker' panicked at /root/.config/cargo/registry/src/rsproxy.cn-0dccff568467c15b/alloy-trie-0.6.0/src/hash_builder/mod.rs:125:9:
add_branch key Nibbles("0b09") self.key Nibbles("0c0e")
stack backtrace:
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
2024-10-18T02:26:07.775530Z ERROR Critical task `pipeline task` panicked: `add_branch key Nibbles("0b09") self.key Nibbles("0c0e")`
2024-10-18T02:26:07.775601Z ERROR backfill sync task dropped err=channel closed
2024-10-18T02:26:07.775626Z ERROR Fatal error in consensus engine
2024-10-18T02:26:07.775622Z ERROR shutting down due to error
Error: Critical task `pipeline task` panicked: `add_branch key Nibbles("0b09") self.key Nibbles("0c0e")`

Location:
    /app/code/reth/crates/cli/runner/src/lib.rs:161:32

reth version:

$ ./bin/reth --version
reth Version: 1.1.0-dev
Commit SHA: dfcaad4608797ed05a8b896fcfad83a83a6292af
Build Timestamp: 2024-10-18T02:27:42.090653312Z
Build Features: asm_keccak,jemalloc
Build Profile: release

Reth run with

reth node \
--datadir=/data \
--http \
--port=5500 \
--http.addr=0.0.0.0 \
--http.port=5545 \
--http.api=admin,debug,eth,net,trace,txpool,web3,rpc,ots \
--http.corsdomain=* \
--ws \
--ws.addr=0.0.0.0 \
--ws.port=5546 \
--ws.origins=* \
--ws.api=admin,debug,eth,net,trace,txpool,web3,rpc \
--authrpc.addr=0.0.0.0 \
--authrpc.port=8551 \
--authrpc.jwtsecret=/jwt/jwt.hex \
--metrics=0.0.0.0:5550 \
--rpc.max-request-size=50 \
--rpc.max-response-size=1024 \
--rpc.max-subscriptions-per-connection=1024 \
--rpc.max-connections=1000 \
--rpc.max-tracing-requests=20 \
--rpc.max-blocks-per-filter=500000 \
--rpc.max-logs-per-response=1000000 \
--color=never

@DaveWK
Copy link
Author

DaveWK commented Oct 18, 2024

Still caught in an endless loop of the stages and unable to keep up.. Still seeing:
l2_finalized=0x0000000000000000000000000000000000000000000000000000000000000000:0 l2_safe=0x0000000000000000000000000000000000000000000000000000000000000000:0
even after multiple passes through all the stages.. I am not sure what stage is supposed to be storing the safe and finalized but it is not doing the needful, and would suggest pats of the process aren't "checkpointing" properly.

@DaveWK
Copy link
Author

DaveWK commented Oct 18, 2024

One thing I am noticing in the "execution" and "merkleExecute" stages is that when I restart the node it goes fast for a few checkpoints IE in the 1.5 Ggas range, then it seems to drop down considerably to like 100 mGas when it adds peers.. Is there perhaps a thread associated with p2p that is making the execution threads block?

@mattsse
Copy link
Collaborator

mattsse commented Oct 18, 2024

the ignored safe/finalized hashes has been fixed on main

need to think about your p2p idea

@DaveWK
Copy link
Author

DaveWK commented Oct 18, 2024

One thing I noticed during these stages, as per the troubleshooting docs, was noticing the Commit total_duration seemed to be about 2-3 µs which seems to be the expected latency/timing. Not sure what logging setting I could adjust but whenever it seems to wake up and do "pinging boot nodes" there seems to be a stall and no other logging..

2024-10-18T18:40:46.533660Z DEBUG net::session: failed to receive message err=disconnected remote_peer_id=0x9d2a8051ae2c3b7fb611a6768c3791ebb36b19276009ea83188df66e2c893893228c4b19b0b99904b0e1e0f0844bba754a74bb2c370da3a9360ccdee21af1fef
2024-10-18T18:40:46.827248Z  INFO reth::cli: Status connected_peers=8 stage=MerkleExecute checkpoint=21232692 target=21239239 stage_progress=51.15% stage_eta=1h 24m 29s
2024-10-18T18:40:48.000334Z DEBUG storage::db::mdbx: Commit total_duration=2.67µs commit_latency=Some(CommitLatency(MDBX_commit_latency { preparation: 0, gc_wallclock: 0, audit: 0, write: 0, sync: 0, ending: 0, whole: 1, gc_cputime: 0, gc_prof: MDBX_commit_latency__bindgen_ty_1 { wloops: 0, coalescences: 0, wipes: 0, flushes: 0, kicks: 0, work_counter: 0, work_rtime_monotonic: 0, work_xtime_cpu: 0, work_rsteps: 0, work_xpages: 0, work_majflt: 0, self_counter: 0, self_rtime_monotonic: 0, self_xtime_cpu: 0, self_rsteps: 0, self_xpages: 0, self_majflt: 0 } })) is_read_only=true
2024-10-18T18:40:53.630809Z DEBUG discv4: pinging boot node record=NodeRecord { address: 54.198.153.150, udp_port: 30301, tcp_port: 30301, id: 0xcdadbe835308ad3557f9a1de8db411da1a260a98f8421d62da90e71da66e55e98aaa8e90aa7ce01b408a54e4bd2253d701218081ded3dbe5efbbc7b41d7cef79 }
2024-10-18T18:40:53.630822Z DEBUG discv4: pinging boot node record=NodeRecord { address: 34.65.175.185, udp_port: 30305, tcp_port: 30305, id: 0xca2774c3c401325850b2477fd7d0f27911efbf79b1e8b335066516e2bd8c4c9e0ba9696a94b1cb030a88eac582305ff55e905e64fb77fe0edcd70a4e5296d3ec }
2024-10-18T18:40:53.630824Z DEBUG discv4: pinging boot node record=NodeRecord { address: 3.231.138.188, udp_port: 30301, tcp_port: 30301, id: 0x87a32fd13bd596b2ffca97020e31aef4ddcc1bbd4b95bb633d16c1329f654f34049ed240a36b449fda5e5225d70fe40bc667f53c304b71f8e68fc9d448690b51 }
2024-10-18T18:40:53.630826Z DEBUG discv4: pinging boot node record=NodeRecord { address: 184.72.129.189, udp_port: 30301, tcp_port: 30301, id: 0xca21ea8f176adb2e229ce2d700830c844af0ea941a1d8152a9513b966fe525e809c3a6c73a2c18a12b74ed6ec4380edf91662778fe0b79f6a591236e49e176f9 }
2024-10-18T18:40:53.630828Z DEBUG discv4: pinging boot node record=NodeRecord { address: 34.65.107.0, udp_port: 30305, tcp_port: 30305, id: 0xdd751a9ef8912be1bfa7a5e34e2c3785cc5253110bd929f385e07ba7ac19929fb0e0c5d93f77827291f4da02b2232240fbc47ea7ce04c46e333e452f8656b667 }
2024-10-18T18:40:53.630829Z DEBUG discv4: pinging boot node record=NodeRecord { address: 34.65.202.239, udp_port: 30305, tcp_port: 30305, id: 0xc5d289b56a77b6a2342ca29956dfd07aadf45364dde8ab20d1dc4efd4d1bc6b4655d902501daea308f4d8950737a4e93a4dfedd17b49cd5760ffd127837ca965 }
2024-10-18T18:40:53.630830Z DEBUG discv4: pinging boot node record=NodeRecord { address: 3.231.11.52, udp_port: 30301, tcp_port: 30301, id: 0x8a5a5006159bf079d06a04e5eceab2a1ce6e0f721875b2a9c96905336219dbe14203d38f70f3754686a6324f786c2f9852d8c0dd3adac2d080f4db35efc678c5 }
2024-10-18T18:40:53.630832Z DEBUG discv4: pinging boot node record=NodeRecord { address: 3.220.145.177, udp_port: 30301, tcp_port: 30301, id: 0xacf4507a211ba7c1e52cdf4eef62cdc3c32e7c9c47998954f7ba024026f9a6b2150cd3f0b734d9c78e507ab70d59ba61dfe5c45e1078c7ad0775fb251d7735a2 }
2024-10-18T18:40:53.913488Z DEBUG net: Session established remote_addr=49.13.11.197:30313 client_version=Nodecrawler/v1.14.0-unstable/linux-arm64/go1.22.5 peer_id=0xc1ea237938283be33aae814c57278a064d7540dff81f1cd2062ee359e970525db4ab3478e478ad2dc91892b35a8fa491830333402eb2e678a067ed0b37c022dd total_active=9 kind=outgoing peer_enode=enode://c1ea237938283be33aae814c57278a064d7540dff81f1cd2062ee359e970525db4ab3478e478ad2dc91892b35a8fa491830333402eb2e678a067ed0b37c022dd@49.13.11.197:30313
2024-10-18T18:40:53.951645Z DEBUG net::discv5: connected peers in routing table connected_peers=114```

@DaveWK
Copy link
Author

DaveWK commented Oct 18, 2024

the ignored safe/finalized hashes has been fixed on main

Not to be argumentative, but have been running off main for a few days now (gradually updating my commit) and my op-reth chain still does not appear to be storing the l2 safe/finalized as they still show up as 0x00.. in the op-node logs. I would have expected now that it's looping over all 12 stages then starting from stage 1 again that it would have at some point set finalized/safe to not be 0x00.. Could it have persisted the incorrect 0x00 value and never have any integrity checking between being "unset" and being "0x00" ?

Are these value supposed to be derived from entries in the static_files somehow, or maybe a better question would be which "stage" is supposed to be updating these values because it doesn't appear to be doing so?

@Rjected
Copy link
Member

Rjected commented Oct 18, 2024

The safe / finalized hashes are set here if there is no safe head / finalized head:
https://github.com/ethereum-optimism/optimism/blob/4c4ac72dd7b74289007f883ad44d4cb99e10ae9e/op-node/rollup/engine/engine_controller.go#L350-L359

Had to do some investigation on what the syncStatusFinishedELButNotFinalized variable meant, and it needs a few things to be satisfied to be true (and set the finalized / safe to non-zero):

  1. the node needs to be in EL sync mode
  1. fetching the block over RPC using the finalized tag needs to at least return the L2 genesis block, op-node needs to be run with --l2.enginekind=reth, or return "not found" (although i wonder if this error match has some edge case)
  1. the EL needs to return VALID from a forkchoiceUpdated or newPayload call

Let me double check that this is the only way for op-node to set the finalized / safe hashes. Then I will check that this is the only way for the finalized / safe hashes to be set.
It's possible that even if we have set the node to return the genesis block when the finalized tag is requested, that op-node still does not set the safe/finalized hashes until other conditions are met.

@Rjected
Copy link
Member

Rjected commented Oct 18, 2024

hmm, when I request the finalized block on startup when running base as:

op-reth node --chain base --engine.experimental --http --http.api eth

I get:

curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"eth_getBlockByNumber","params":["finalized", false],"id":67}' http://localhost:8545
{"jsonrpc":"2.0","id":67,"result":null}⏎

Which is notably not the not found that we are looking for. Although if running with --l2.enginekind=reth this shouldn't matter. This happens with both legacy and new engine, so I don't think this is relevant to the issue. Eventually op-node should set the safe and finalized blocks if op-reth finishes sync and returns VALID.

@DaveWK
Copy link
Author

DaveWK commented Oct 18, 2024

Hmm, so I am able to query and get a finalized block bash when I curl op-reth, so it does seem as though op-node is just reporting a bad log message.

I am currently waiting for another stages loop to finish, as I am currently in another run of stage=MerkleExecute and assume once it completes all 12 stages it will once again update finalized. I think this points me back at figuring out why the stage=MerkleExecute and stage=Execute might be taking a long time despite having ample disk IO and CPU; I would assume they should be taking 1 core to 100% load since its a single-threaded process, so something may be blocking?

@eiabea
Copy link

eiabea commented Oct 25, 2024

I am not 100% sure if this issue is related to my issue, but I get a similar error:

reth_holesky-1  | 2024-10-25T03:44:47.286015Z  INFO Status connected_peers=3 stage=MerkleExecute checkpoint=2600040 target=2600162
reth_holesky-1  | thread 'tokio-runtime-worker' panicked at /cargo/registry/src/index.crates.io-6f17d22bba15001f/alloy-trie-0.6.0/src/hash_builder/mod.rs:116:9:
reth_holesky-1  | add_leaf key Nibbles("080a03050a0c0f0b0c01050f0f08010a03090a0e070d0304040f0d0700090f02080e080600000b040a0a080c06050c060b06040b0f0e070f0e03060b0d01090b") self.key Nibbles("090c0f0d010e0b0a050b00070906090e050a0d0c0d0c09070700010208070b0e050e0e010d0e0a04070500030e07030f0f05010e0909040a040f010204060201")
reth_holesky-1  | stack backtrace:
reth_holesky-1  | note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
reth_holesky-1  | 2024-10-25T03:45:01.536164Z ERROR backfill sync task dropped err=channel closed
reth_holesky-1  | 2024-10-25T03:45:01.536320Z ERROR Fatal error in consensus engine
reth_holesky-1  | 2024-10-25T03:45:01.537396Z ERROR Critical task `pipeline task` panicked: `add_leaf key Nibbles("080a03050a0c0f0b0c01050f0f08010a03090a0e070d0304040f0d0700090f02080e080600000b040a0a080c06050c060b06040b0f0e070f0e03060b0d01090b") self.key Nibbles("090c0f0d010e0b0a050b00070906090e050a0d0c0d0c09070700010208070b0e050e0e010d0e0a04070500030e07030f0f05010e0909040a040f010204060201")`
reth_holesky-1  | 2024-10-25T03:45:01.561204Z ERROR shutting down due to error
reth_holesky-1  | Error: Critical task `pipeline task` panicked: `add_leaf key Nibbles("080a03050a0c0f0b0c01050f0f08010a03090a0e070d0304040f0d0700090f02080e080600000b040a0a080c06050c060b06040b0f0e070f0e03060b0d01090b") self.key Nibbles("090c0f0d010e0b0a050b00070906090e050a0d0c0d0c09070700010208070b0e050e0e010d0e0a04070500030e07030f0f05010e0909040a040f010204060201")`
reth_holesky-1  | 
reth_holesky-1  | Location:
reth_holesky-1  |     /project/crates/cli/runner/src/lib.rs:161:32

I switched to the new engine yesterday on holesky and everything seemed fine, but now reth keeps crashing with the error above.

Image version: ghcr.io/paradigmxyz/reth:v1.1.0
Command:

      node
        --full
        --chain=holesky
        --port=30403
        --ws
        --ws.addr=0.0.0.0
        --ws.port=8546
        --http
        --http.addr=0.0.0.0
        --http.port=8645
        --http.api=eth,net

Update:

Custom prune setting:

# Stakewise
[prune.segments.receipts_log_filter.0x6B5815467da09DaA7DC83Db21c9239d98Bb487b5]
before = 18470089

@MrFrogoz
Copy link

I also have the same error on Base

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-op-reth Related to Optimism and op-reth C-bug An unexpected or incorrect behavior
Projects
Status: Done
Development

Successfully merging a pull request may close this issue.

8 participants