graphprotocol / graphprotocol/graph-node
Automated index creation
@jgraber-io arbeitet bereits daran.
Seit 28.8.2025.
- Vorherrschende Sprache
- Rust
- Sterne
- 3.2k
- Forks
- 1.1k
- Ø Merge
- 4 T. 1 Std.
- Gemergte PRs (30 T.)
- 1
Beschreibung
Description
We could employ some simple heuristics to ease the need for manual index creation to support slow queries. The basic idea is that the LoadManager is aware of the load in each shard, and which queries (by shape hash) cause what percentage of the load there.
We could therefore use this information to trigger automatically creating indexes to speed up the query/queries that are causing most of the load. Once a decision has been made to improve a particular GraphQL query, we would run that query in trace mode to identify the slowest SQL query (corresponding to a specific part of the GraphQL query) and then use some heuristics to try and improve the query. For example, those heuristics could use
- if the table has a lot of versions/entity: set table to
account-like - if the query filters by one attribute with
=and orders by another attribute or filters by another attribute with<etc: create a BTree on those two attributes - if most of the query are executed against a recent block: create a partial index
There's lots of experimentation we could do with these heuristics, but they could lower the load for operators considerably.
This issue is in complementary to #4325 as it covers very similar functionality, but could reduce the need for creating indexing rules, too.
Are you aware of any blockers that must be resolved before implementing this feature? If so, which? Link to any relevant GitHub issues.
Issue #4262 needs to addressed first to ensure that the LoadManager has accurate statistics about query execution
Some information to help us out
- Tick this box if you plan on implementing this feature yourself.
- I have searched the issue tracker to make sure this issue is not a duplicate.
Beitragsleitfaden
Erste Schritte
- Lies das ganze Issue und danach den Beitragsleitfaden des Projekts.
- Schreib ins Issue, dass du es übernimmst — das erspart doppelte Arbeit.
- Forke das Repository und arbeite in einem Branch.
- Öffne einen Pull Request, der die Issue-Nummer nennt.
Bewertung
Dieses Issue wurde noch nicht bewertet.