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
Added missing config parameters and general standardization to Kafka input plugin doc. Fixes#2268. (#2269)
Kafka input plugin doc updates:
- Fixed missing configuration Parameters: enable_auto_commit, poll_timeout_ms
- Fixed case issue: Changed Buffer_Max_Size → buffer_max_size (lowercase to match source code)
- Sorted table alphabetically
- Fixed header column case: Changed default → Default in the table header
- Fixed default value for format: Changed none → none (matches actual default in source)
- Fixed description: Added missing period to end of rdkafka.{property} description
- Fixed .conf example capitalization
Signed-off-by: Eric D. Schabell <eric@schabell.org>
|`brokers`| Single or multiple list of Kafka Brokers. For example: `192.168.1.3:9092`, `192.168.1.4:9092`. |_none_|
14
-
|`topics`| Single entry or list of comma-separated topics (`,`) that Fluent Bit will subscribe to. |_none_|
15
-
|`format`| Serialization format of the messages. If set to `json`, the payload will be parsed as JSON. |_none_|
14
+
|`buffer_max_size`| Specify the maximum size of buffer per cycle to poll Kafka messages from subscribed topics. To increase throughput, specify larger size. |`4M`|
16
15
|`client_id`| Client id passed to librdkafka. |_none_|
16
+
|`enable_auto_commit`| Rely on Kafka auto-commit and commit messages in batches. |`false`|
17
+
|`format`| Serialization format of the messages. If set to `json`, the payload will be parsed as JSON. |`none`|
17
18
|`group_id`| Group id passed to librdkafka. |`fluent-bit`|
18
19
|`poll_ms`| Kafka brokers polling interval in milliseconds. |`500`|
19
-
|`Buffer_Max_Size`|Specify the maximum size of buffer per cycle to poll Kafka messages from subscribed topics. To increase throughput, specify larger size. |`4M`|
20
-
|`rdkafka.{property}`|`{property}` can be any [librdkafka properties](https://github.com/edenhill/librdkafka/blob/master/CONFIGURATION.md)|_none_|
20
+
|`poll_timeout_ms`|Timeout in milliseconds for Kafka consumer poll operations. Only effective when `threaded` is enabled. |`1`|
21
+
|`rdkafka.{property}`|`{property}` can be any [librdkafka properties](https://github.com/edenhill/librdkafka/blob/master/CONFIGURATION.md).|_none_|
21
22
|`threaded`| Indicates whether to run this input in its own [thread](../../administration/multithreading.md#inputs). |`false`|
23
+
|`topics`| Single entry or list of comma-separated topics (`,`) that Fluent Bit will subscribe to. |_none_|
0 commit comments