Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable gRPC compression #4429

Merged
merged 1 commit into from
Dec 9, 2024

Conversation

carles-grafana
Copy link
Contributor

@carles-grafana carles-grafana commented Dec 9, 2024

Our benchmark suggests that without compression, queriers and distributors use less CPU and memory.

This setting is configured at the client end.
That is, in the querier and in the ingester and metrics_generator clients of the distributor.

Checklist

  • Tests updated
  • Documentation added
  • CHANGELOG.md updated - the order of entries should be [CHANGE], [FEATURE], [ENHANCEMENT], [BUGFIX]
CHANGELOG.md Outdated
@@ -1,5 +1,6 @@
## main / unreleased
* [FEATURE] tempo-cli: support dropping multiple traces in a single operation [#4266](https://github.com/grafana/tempo/pull/4266) (@ndk)
* [CHANGE] Disable gRPC compression in the querier and distributor. [#4429] (https://github.com/grafana/tempo/pull/4429) (@carles-grafana)
Copy link
Member

@joe-elliott joe-elliott Dec 9, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's add some more details here. Something like:

Disable gRPC compression in the querier and distributor for performance reasons.
If you would like to reenable we recommend snappy. Use the following settings:

querier:
  <whatever the path to the setting is>
distributor:
  <whatever the path to the setting is>
@joe-elliott
Copy link
Member

Looks like there's a changelog conflict. Get that cleaned up and we'll merge!

Our benchmark suggests that without compression, queriers and distributors use less CPU and memory.

This setting is configured at the client end.
That is, in the querier and in the ingester and metrics_generator clients of the distributor.
@@ -116,9 +116,9 @@ func (c *Config) RegisterFlagsAndApplyDefaults(prefix string, f *flag.FlagSet) {

// Everything else
flagext.DefaultValues(&c.IngesterClient)
c.IngesterClient.GRPCClientConfig.GRPCCompression = "snappy"
c.IngesterClient.GRPCClientConfig.GRPCCompression = ""
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: since this is changing the default values, let's update docs/sources/tempo/configuration/manifest.md as well.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm writing a script to generate it automatically and to the check it in CI. I will add it in another PR.

@joe-elliott joe-elliott merged commit 2fff84a into grafana:main Dec 9, 2024
16 checks passed
@vladst3f
Copy link

some before/after benchmarks would have been nice ! otherwise everyone is aware of the tradeoff.

@carles-grafana
Copy link
Contributor Author

carles-grafana commented Dec 13, 2024

some before/after benchmarks would have been nice ! otherwise everyone is aware of the tradeoff.

In our testing environment we've seen less CPU usage in queries that return a high number of series. Likewise, in our distributors we saw a significant drop after disabling compression.
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
5 participants