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 gzip compression in core control plane components #80919

Merged
merged 2 commits into from
Aug 5, 2019

Commits on Aug 2, 2019

  1. Allow gzip compression to be disabled from rest.Config

    Golang automatically enables transport level gzip, but local network
    clients may wish to disable it for better CPU usage and lower latency
    (scheduler, controller-manager). Allow DisableCompression on rest.Config
    to modify the underlying transport. This impacts the transport cache,
    but it is expected that most clients connecting to the same servers
    within a process will have the same compression config.
    smarterclayton committed Aug 2, 2019
    Configuration menu
    Copy the full SHA
    dee6de7 View commit details
    Browse the repository at this point in the history
  2. Disable gzip compression in core control plane components

    On local networks (such as the typical connection path between
    control plane components) gzip compression increases CPU use and
    end to end p99 latency rather than decreasing it. Disable compression
    within the control plane components like a 1.15 cluster would be
    configured.
    smarterclayton committed Aug 2, 2019
    Configuration menu
    Copy the full SHA
    33521b4 View commit details
    Browse the repository at this point in the history