Skip to content

Commit e51885c

Browse files
authored
Kafka connectors: new group ID field (#392)
1 parent 756a602 commit e51885c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

snippets/general-shared-text/kafka-cli-api.mdx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,8 @@ If you use Kafka API keys and secrets for authentication:
2222
Additional settings include:
2323

2424
- `--confluent` (CLI) or `confluent` (Python): True to indicate that the cluster is running Confluent Kafka.
25-
- `--num-messages-to-consume` (CLI) or `num_messages_to_consume` (Python): The maximum number of messages to get from the topic. The default is `1`.
26-
- `--timeout` (CLI) or `timeout` (Python): The maximum amount of time to wait for the response of a request to the topic, expressed in seconds. The default is `1.0`.
25+
- `--num-messages-to-consume` (CLI) or `num_messages_to_consume` (Python): The maximum number of messages to get from the topic. The default is `1` if not otherwise specified.
26+
- `--timeout` (CLI) or `timeout` (Python): The maximum amount of time to wait for the response of a request to the topic, expressed in seconds. The default is `1.0` if not otherwise specified.
27+
- `--group-id` (CLI) or `group_id` (Python): The ID of the consumer group, if any, that is associated with the target Kafka cluser.
28+
(A consumer group is a way to allow a pool of consumers to divide the consumption of data
29+
over topics and partitions.) The default is `default_group_id` if not otherwise specified.

0 commit comments

Comments
 (0)