graphprotocol / graphprotocol/graph-node

Automated index creation

Aperta
#4,666 3 commenti 1 reazione 1 assegnatario Vedi su GitHub

@jgraber-io ci sta già lavorando.

Dal 28/8/2025.

enhancement
Lingua principale
Rust
Stelle
3.2k
Fork
1.1k
Merge medio
4g 1h
PR unite (30g)
1

Descrizione

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.

Guida per i contributori

Apri la guida per i contributori

Come iniziare

  1. Leggi tutta la issue e poi la guida ai contributi del progetto.
  2. Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
  3. Fai un fork del repository e lavora su un branch.
  4. Apri una pull request che faccia riferimento al numero della issue.

Valutazione

Questa issue non è ancora stata valutata.

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.