You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: exporter/kafkaexporter/README.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -89,6 +89,22 @@ The following settings can be optionally configured:
89
89
-`max_message_bytes` (default = 1000000) the maximum permitted size of a message in bytes
90
90
-`required_acks` (default = 1) controls when a message is regarded as transmitted. https://docs.confluent.io/platform/current/installation/configuration/producer-configs.html#acks
91
91
-`compression` (default = 'none') the compression used when producing messages to kafka. The options are: `none`, `gzip`, `snappy`, `lz4`, and `zstd`https://docs.confluent.io/platform/current/installation/configuration/producer-configs.html#compression-type
92
+
-`compression_params`
93
+
-`level` (default = -1) the compression level used when producing messages to kafka.
94
+
- The following are valid combinations of `compression` and `level`
95
+
-`gzip`
96
+
- BestSpeed: `1`
97
+
- BestCompression: `9`
98
+
- DefaultCompression: `-1`
99
+
-`zstd`
100
+
- SpeedFastest: `1`
101
+
- SpeedDefault: `3`
102
+
- SpeedBetterCompression: `6`
103
+
- SpeedBestCompression: `11`
104
+
-`lz4`
105
+
Only supports fast level
106
+
-`snappy`
107
+
No compression levels supported yet
92
108
-`flush_max_messages` (default = 0) The maximum number of messages the producer will send in a single broker request.
0 commit comments