Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Introduces a new GRPC Server that supports the streaming of rich information about query traces. This server enables users to obtain stats about running queries without having to change any settings other than enabling the tracing server via the relevant env var.
This is an important step to be able to analyse query performance at runtime in order to explore potential improvements. The exported queries have enough information to then automate the analysis of query plans on postgres to derive new performance improvements, can also be used to sample queries in runtime with no need to restart the graph-node.
The design aims to introduce as little overhead as possible, the subscription are eventually consistent and use watch channels to provide updates so the hot path is lock free, the highest price is paid once when the tracing mechanism is initialised.