Buffer (proto)

This extension has the qualified name envoy.filters.http.buffer

Note

This extension is intended to be robust against untrusted downstream traffic. It assumes that the upstream is trusted.

Tip

This extension extends and can be used with the following extension categories:

This extension must be configured with one of the following type URLs:

Buffer configuration overview.

extensions.filters.http.buffer.v3.Buffer

[extensions.filters.http.buffer.v3.Buffer proto]

{
  "max_request_bytes": {...}
}
max_request_bytes

(UInt32Value, REQUIRED) The maximum request size that the filter will buffer before the connection manager will stop buffering and return a 413 response.

extensions.filters.http.buffer.v3.BufferPerRoute

[extensions.filters.http.buffer.v3.BufferPerRoute proto]

{
  "disabled": ...,
  "buffer": {...}
}
disabled

(bool) Disable the buffer filter for this particular vhost or route.

Precisely one of disabled, buffer must be set.

buffer

(extensions.filters.http.buffer.v3.Buffer) Override the global configuration of the filter with this new config.

Precisely one of disabled, buffer must be set.