-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Conversation
394c520
to
fd36092
Compare
…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.
fd36092
to
0b890a8
Compare
There was a problem hiding this 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,
There was a problem hiding this 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
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
FirehoseEndpoints
code