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

Subgraph Composition: Option to force rpc to fetch block ptrs #5876

Merged
merged 5 commits into from
Mar 31, 2025

Conversation

incrypto32
Copy link
Member

Composable subgraphs need to fetch block ptrs to handle reorgs, when its not in the cache graph-node uses firehose endpoint to fetch the block using a SingleBlockRequest but this is currently slower than RPC.
This PR

  • Adds an option to force using RPC to fetch block ptrs when an RPC endpoint is available
  • Parralize fetching blocks when using firehose
  • Added some refactoring in FirehoseEndpoints code

@incrypto32 incrypto32 force-pushed the krishna/firehose-parallel-get-block branch from 394c520 to fd36092 Compare March 6, 2025 13:43
…ize when using firehose with composable subgraphs
This adds GRAPH_ETHEREUM_FORCE_RPC_FOR_BLOCK_PTRS env var which when enabled forces the use of RPC instead of Firehose for loading block pointers by numbers, with Firehose fallback. Useful for composable subgraphs.
@incrypto32 incrypto32 force-pushed the krishna/firehose-parallel-get-block branch from fd36092 to 0b890a8 Compare March 6, 2025 13:54
@incrypto32 incrypto32 requested review from mangas and Copilot March 27, 2025 09:28
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This PR introduces an option to force the use of RPC for fetching block pointers in composable subgraphs, parallelizes block fetching when using Firehose, and includes refactoring in the Firehose endpoints and environment configuration.

  • Adds a configuration flag for RPC-based block pointer fetching.
  • Refactors Firehose endpoint functions to improve error handling and introduce retry logic.
  • Parallelizes block fetching using futures’ buffered streams and updates environment variable mappings.

Reviewed Changes

Copilot reviewed 5 out of 5 changed files in this pull request and generated no comments.

Show a summary per file
File Description
node/src/chain.rs Passes the additional eth_adapters parameter to support RPC option.
graph/src/firehose/endpoints.rs Refactors block fetching functions with retry logic and error context.
graph/src/env/mod.rs Introduces a new environment variable for Firehose block batch size.
chain/ethereum/src/env.rs Adds a flag to force the use of RPC for block pointer fetching.
chain/ethereum/src/chain.rs Introduces RPC fallback logic based on the new force flag and refactors block loading.
Comments suppressed due to low confidence (3)

graph/src/firehose/endpoints.rs:456

  • [nitpick] Consider adding a brief comment explaining why multiple clones of 'endpoint' and 'logger' are needed in the retry closure; this will help clarify that the clones are intentional due to async lifetime requirements.
let endpoint = self.cheap_clone();

chain/ethereum/src/chain.rs:945

  • [nitpick] The variable name 'eth_adapters' in the RPC branch might be misleading since it represents an adapter used specifically for RPC requests; consider renaming it to 'rpc_adapters' or a similar name for better clarity.
ChainClient::Rpc(eth_adapters) => {

chain/ethereum/src/env.rs:201

  • Double-check that setting the default for GRAPH_ETHEREUM_FORCE_RPC_FOR_BLOCK_PTRS to true is intended, as it forces RPC usage even when Firehose might be available.
force_rpc_for_block_ptrs: EnvVarBoolean,

@incrypto32 incrypto32 self-assigned this Mar 27, 2025
Copy link
Contributor

@mangas mangas left a comment

Choose a reason for hiding this comment

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

Check comment, the rpc feature is on by default right now

@incrypto32 incrypto32 merged commit 5ff1974 into master Mar 31, 2025
6 checks passed
@incrypto32 incrypto32 deleted the krishna/firehose-parallel-get-block branch March 31, 2025 08:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants