consensus-shipyard / ipc

🌳 Spawn multi-level trees of customized, scalable, EVM-compatible networks with IPC. L2++ powered by FVM, Wasm, libp2p, IPFS/IPLD, and CometBFT.
https://ipc.space
Apache License 2.0
41 stars 35 forks source link

Long-range top-down finality catch-ups can be very slow #1031

Open raulk opened 3 months ago

raulk commented 3 months ago

Context

When top-down finality lags behind for whatever reason, it'll get increasingly slower to fetch blocks when we recover, since those portions of the parent chain will be deeper and deeper into history, something that Lotus tends to struggle with.

Fetching a block height involves fetching two kinds of logs: validator changes and top down messages. We already fetch both in parallel. However, there's significant room for optimization.

See logs below from a deployment that took 6 minutes to fetch 22 Filecoin mainnet blocks into the top-down cache.

Proposals

  1. When doing deep catch-ups, we can easily amortize the RPC query costs by calling eth_getLogs for height ranges (e.g. 10, 20, 30 blocks at a time, configurable) instead of individual blocks.
  2. We can diff the top down nonce and configuration number between the start and end of the next range, to potentially even skip the range if nothing has changed.

Logs

2024-06-14 19:28:26.900 2024-06-14T18:28:26.900151Z  INFO fendermint/vm/topdown/src/sync/syncer.rs:258: event=NewParentView is_null=false block_height=3996367 block_hash="9eb6f65b6692bc9d3e38acaacfcd4855b65e0d9aae757398b744d228fbf27225" num_msgs=0 num_validator_changes=0
2024-06-14 19:28:08.767 2024-06-14T18:28:08.767381Z  INFO fendermint/vm/topdown/src/sync/syncer.rs:258: event=NewParentView is_null=false block_height=3996366 block_hash="d8a8e11d82db56434dae4e3e3cda85de88cc7c12d005ca3133a83f57bb1b4623" num_msgs=0 num_validator_changes=0
2024-06-14 19:27:50.708 2024-06-14T18:27:50.708660Z  INFO fendermint/vm/topdown/src/sync/syncer.rs:258: event=NewParentView is_null=false block_height=3996365 block_hash="5113afa4bec27a33c916cdf7d9b66fb88eddaddbd21c276951d731cd85e26693" num_msgs=0 num_validator_changes=0
2024-06-14 19:27:32.620 2024-06-14T18:27:32.620510Z  INFO fendermint/vm/topdown/src/sync/syncer.rs:258: event=NewParentView is_null=false block_height=3996364 block_hash="92e300c33ba79608b06b691fb38c9ed6438bced84ff284f3ac58541590b3f788" num_msgs=0 num_validator_changes=0
2024-06-14 19:27:14.336 2024-06-14T18:27:14.336393Z  INFO fendermint/vm/topdown/src/sync/syncer.rs:258: event=NewParentView is_null=false block_height=3996363 block_hash="6ec1ce1aebd3490577ad433c2390f386a092c214ee6aaecc7190197280dba455" num_msgs=0 num_validator_changes=0
2024-06-14 19:26:56.153 2024-06-14T18:26:56.153276Z  INFO fendermint/vm/topdown/src/sync/syncer.rs:258: event=NewParentView is_null=false block_height=3996362 block_hash="0c907330385de561e34a29567b1940598fbde28c78b7e5dd9a5a3a4e2ee496fb" num_msgs=0 num_validator_changes=0
2024-06-14 19:26:38.200 2024-06-14T18:26:38.199938Z  INFO fendermint/vm/topdown/src/sync/syncer.rs:258: event=NewParentView is_null=false block_height=3996361 block_hash="33cd5961e49cde874ba7871a7eaaeec16462088b948441cae9a2ca0a57b0c5a5" num_msgs=0 num_validator_changes=0
2024-06-14 19:26:20.029 2024-06-14T18:26:20.029064Z  INFO fendermint/vm/topdown/src/sync/syncer.rs:258: event=NewParentView is_null=false block_height=3996360 block_hash="00099538cbe87f219951f7cf76ffcb2eba2e9b59e5508d2d2f07d183c0c884b1" num_msgs=0 num_validator_changes=0
2024-06-14 19:26:01.856 2024-06-14T18:26:01.856335Z  INFO fendermint/vm/topdown/src/sync/syncer.rs:258: event=NewParentView is_null=false block_height=3996359 block_hash="119ca4b1219166f734ea7b7c30ea0448732b32a86b68b8e88e9b7eec24dc3f29" num_msgs=0 num_validator_changes=0
2024-06-14 19:25:43.938 2024-06-14T18:25:43.938022Z  INFO fendermint/vm/topdown/src/sync/syncer.rs:258: event=NewParentView is_null=false block_height=3996358 block_hash="bd7f06b520ae6eb0061a8e911375a0bc974d06070ba8d2ab2d529f9ba5af561d" num_msgs=0 num_validator_changes=0
2024-06-14 19:25:25.714 2024-06-14T18:25:25.714641Z  INFO fendermint/vm/topdown/src/sync/syncer.rs:258: event=NewParentView is_null=false block_height=3996357 block_hash="1aba2c8125ce1841545de4a408bbdeafa55613b9ef76c160f02bc634b4213527" num_msgs=0 num_validator_changes=0
2024-06-14 19:25:07.616 2024-06-14T18:25:07.616761Z  INFO fendermint/vm/topdown/src/sync/syncer.rs:258: event=NewParentView is_null=false block_height=3996356 block_hash="fc6235d83ff77b82f9a31d33a78d7a8d1aec3e1afacc628a457e452927ed9baf" num_msgs=0 num_validator_changes=0
2024-06-14 19:24:49.495 2024-06-14T18:24:49.495143Z  INFO fendermint/vm/topdown/src/sync/syncer.rs:258: event=NewParentView is_null=false block_height=3996355 block_hash="9040c3f7362810ee5ccbc7038c8125efbee051ba2f88e4fb533a0cfca3b6f938" num_msgs=0 num_validator_changes=0
2024-06-14 19:24:31.126 2024-06-14T18:24:31.126587Z  INFO fendermint/vm/topdown/src/sync/syncer.rs:258: event=NewParentView is_null=false block_height=3996354 block_hash="ddb24d92d526b14cef612835cc8bde462a40052be0ed9b0699c9bf43c1665902" num_msgs=0 num_validator_changes=0
2024-06-14 19:24:13.033 2024-06-14T18:24:13.033184Z  INFO fendermint/vm/topdown/src/sync/syncer.rs:258: event=NewParentView is_null=false block_height=3996353 block_hash="dd38bf6dd4ff76c61d5700df958de7044a69af179686c3454fe5b4d5c005c980" num_msgs=0 num_validator_changes=0
2024-06-14 19:23:54.833 2024-06-14T18:23:54.833593Z  INFO fendermint/vm/topdown/src/sync/syncer.rs:258: event=NewParentView is_null=false block_height=3996352 block_hash="4214001b27587d1c9973699884074322ee68e3f70399170f566e989ccd59a30f" num_msgs=0 num_validator_changes=0
2024-06-14 19:23:36.845 2024-06-14T18:23:36.845354Z  INFO fendermint/vm/topdown/src/sync/syncer.rs:258: event=NewParentView is_null=false block_height=3996351 block_hash="78f87af9fa2ae10a8da423357a928c9955ef9063370a842213291f0292a714ee" num_msgs=0 num_validator_changes=0
2024-06-14 19:23:18.661 2024-06-14T18:23:18.661057Z  INFO fendermint/vm/topdown/src/sync/syncer.rs:258: event=NewParentView is_null=false block_height=3996350 block_hash="a5eac7dcc5932421e1b61a67693de06a6855a410371d9d65dd6f242c8252ae15" num_msgs=0 num_validator_changes=0
2024-06-14 19:23:00.436 2024-06-14T18:23:00.435932Z  INFO fendermint/vm/topdown/src/sync/syncer.rs:258: event=NewParentView is_null=false block_height=3996349 block_hash="48a1743d422cd3d10e658334bb4dea8348d24e42038e8c359dde9a3ef70b7972" num_msgs=0 num_validator_changes=0
2024-06-14 19:22:42.386 2024-06-14T18:22:42.386223Z  INFO fendermint/vm/topdown/src/sync/syncer.rs:258: event=NewParentView is_null=false block_height=3996348 block_hash="658eb0aa9fa328a1ba6bad467e6148ca8df4e45425224eefd66d54e969ef71de" num_msgs=0 num_validator_changes=0
2024-06-14 19:22:24.185 2024-06-14T18:22:24.185107Z  INFO fendermint/vm/topdown/src/sync/syncer.rs:258: event=NewParentView is_null=false block_height=3996347 block_hash="8fa17c19ff7d9df8ec27936054e41d0bd523f7c7b5f7a981b05aca1dd9f026ed" num_msgs=0 num_validator_changes=0
2024-06-14 19:22:06.121 2024-06-14T18:22:06.121632Z  INFO fendermint/vm/topdown/src/sync/syncer.rs:258: event=NewParentView is_null=false block_height=3996346 block_hash="5755c00d4494a7a58ad741d0181d02b8fe3b9754cff108a86bd952497f8b9189" num_msgs=0 num_validator_changes=0