Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.astradot.com/llms.txt

Use this file to discover all available pages before exploring further.

Astradot supports Kafka 4.1 and above.

Consumer Groups

We do not support legacy ‘Classic’ Consumer Groups that were deprecated in Kafka 4.0. ‘Modern’ consumer groups are the recommended way to consume from Kafka since Kafka 4.0. They are stable and supported by all recent versions of Kafka clients. To enable Modern Consumer Groups in your client code, set this property in your consumer config:
group.protocol=consumer
In Java, this typically means adding this line to your consumer config:
    properties.put(ConsumerConfig.GROUP_PROTOCOL_CONFIG, "consumer");