We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
eth_getLogs default fromBlock from value is the genesis block. This leads to large default queries that can block the client.
eth_getLogs
fromBlock
A configurable maximum range parameter (something like --rpc-logs-range-upper-bound?) might reduce the chances of this happening.
--rpc-logs-range-upper-bound
Addresses part of #4123.
A configurable range to limit eth_getLogs query size is available.
The text was updated successfully, but these errors were encountered:
Some data on eth_getLogs output from Mainnet: 1000 block range: ~200Mb output, ~1s processing time 2000 block range: ~400Mb output, ~1.2s processing time 5000 block range: ~1.2Gb output, ~4.5s processing time.
Sorry, something went wrong.
mark-terry
No branches or pull requests
Description
eth_getLogs
defaultfromBlock
from value is the genesis block. This leads to large default queries that can block the client.A configurable maximum range parameter (something like
--rpc-logs-range-upper-bound
?) might reduce the chances of this happening.Addresses part of #4123.
Acceptance Criteria
A configurable range to limit
eth_getLogs
query size is available.The text was updated successfully, but these errors were encountered: