David Lutterkort
David Lutterkort
Postgres supports merging two jsonb objects with the `||` operator. I recently needed that and implemented it [here](https://github.com/graphprotocol/graph-node/blob/master/store/postgres/src/jsonb.rs) but haven't been able to turn this into a proper PR. If...
MySQL (incompatible change): handle !include directives in the middle… CentOS 6.6 (at least) ships with a mysql.conf that has a !include directive in the middle of a section. To accomodate...
This is not meant to be committed yet, but I would really appreciate feedback based on people's experimenting with these patches. So far, how deleted text is handled when entries...
/etc/exports allows specifying default options by preceding them with a `-`. The `Exports.lns` lens does not recognize this. The following line can not be parsed because of that: ``` /srv/www...
The command will have the form `graphman prune ` and remove all entity versions that were deleted or updated at least `offset` many blocks before the current subgraph head; for...
With #3666, operators can control pruning of individual subgraphs, but it requires user action for each subgraph that should be pruned. There should be a control that automatically prunes subgraphs...
Running `graphman prune ` will change a subgraph so that it will retain about `offset` many blocks going back from the subgraph head. Pruning will therefore be an ongoing operation...
The code [here](https://github.com/graphprotocol/graph-node/blob/master/chain/cosmos/src/codec.rs#L24) and [here](https://github.com/graphprotocol/graph-node/blob/master/chain/cosmos/src/codec.rs#L24) unwraps an `Option`. That has lead to startup failures in staging. The code needs to be changed to either deal witha `None` properly (e.g., by...
After restarting `graph-node` while it is copying a subgraph, the overall progress indication is wrong. It very much looks like after restarting, entities that were copied before the restart aren't...
This PR makes the `EntityCache` more memory efficient, meaning the same amount of memory will be able to store more entities with two changes: * Use `Word` (`Box`) for entity...