Skip to content

Support for Compress option in fb Output forward plugin #1493

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

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
support for Compress in forward output plugin
  • Loading branch information
Ravi Ghosh authored and Ravi Ghosh committed Mar 7, 2025
commit 1bcc9b5fc99eb217cee6eeeacde805dc32feb551
12 changes: 12 additions & 0 deletions manifests/setup/fluent-operator-crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5196,6 +5196,12 @@ spec:
maximum: 65535
minimum: 1
type: integer
compress:
description: Set payload compression mechanism. Option available
is 'gzip'
enum:
- gzip
type: string
requireAckResponse:
description: |-
Send "chunk"-option and wait for "ack" response from server.
Expand Down Expand Up @@ -34026,6 +34032,12 @@ spec:
maximum: 65535
minimum: 1
type: integer
compress:
description: Set payload compression mechanism. Option available
is 'gzip'
enum:
- gzip
type: string
requireAckResponse:
description: |-
Send "chunk"-option and wait for "ack" response from server.
Expand Down
10 changes: 10 additions & 0 deletions manifests/setup/setup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5196,6 +5196,10 @@ spec:
maximum: 65535
minimum: 1
type: integer
compress:
description: Set payload compression mechanism. Option available
is 'gzip'
type: string
requireAckResponse:
description: |-
Send "chunk"-option and wait for "ack" response from server.
Expand Down Expand Up @@ -34026,6 +34030,12 @@ spec:
maximum: 65535
minimum: 1
type: integer
compress:
description: Set payload compression mechanism. Option available
is 'gzip'
enum:
- gzip
type: string
requireAckResponse:
description: |-
Send "chunk"-option and wait for "ack" response from server.
Expand Down