Leonardo Yvens
Leonardo Yvens
See [this commit](https://github.com/graphprotocol/graph-node/commit/2c8173c5d7f7ea139bc5288a947f2782608a2e08) for a reproduction example. It exposes a few causes that seem to be conspiring: 1. The log below can be obtained by running the example with h2...
This shows as a major time consumer in a few subgraphs including: https://thegraph.com/hosted-service/subgraph/sushi-labs/users-polygon (Qma5YzDtseXGJfwt1dGMmRwMaqvbgdSgnprWSdnp5gQf3n) https://thegraph.com/hosted-service/subgraph/sushi-labs/users-ethereum (QmV4tr3xCx21z77YhPNLM7dJJtGmQ7tvzKpLJTBHNrBd5B) https://thegraph.com/hosted-service/subgraph/sushiswap/sushiswap-polygon (QmT3h6RJvw5zJ6Gq6v6xt1sNExxHcUXEXc4y9rGHjYmPFj) Since this is purely a CPU operation it should be possible to...
The blocker to supporting static file data sources is that static data sources are not stored in the DB, and therefore we would not be able to update their status...
It has interesting info but it logs very frequently and isn't actually read often. Better left outside the default logs.
This was added in a time when we were having problems with receiving chain head updates and were trying workarounds. This one had a hypothesis of a deadlock in tokio...
Right now we rely on the `files/stat` ipfs route to fetch file sizes before processing them. However in practice we've found that this API tends to error when `cat` still...
The bug fix in https://github.com/graphprotocol/graph-node/pull/5236 was merged without an unit test due to being a hotfix.
Resolves #5177.
Running `graphman rewind` to a block N which is further than the current subgraph head number will run without raising errors and will move the head forward to block N....
`graphman rewind` will currently reassign the subgraph to a `paused_*` node, we could consider using the first-class pausing mechanism now that we have one.