You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Status

Current state: Draft Under Discussion

Discussion thread: here

JIRA: Unable to render Jira issues macro, execution error.

Please keep the discussion on the mailing list rather than commenting on the wiki (wiki discussions get unwieldy fast).

Motivation

As explained in the corresponding JIRA, the consumer behavior is not consistent when it comes to using an empty ("") group id:

  • If the consumer subscribes to a topic using the default group id ("") it will get an invalid group id error from the broker during a poll (JoinGroupRequest fails group validation if group id is "").

    Invalid use of consumer with default group id
    String topic = "foo";
    Properties properties = new Properties();
    properties.put(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG, "localhost:9092");
    properties.put(ConsumerConfig.KEY_DESERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.StringDeserializer");
    properties.put(ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.StringDeserializer");
    
    KafkaConsumer consumer = new KafkaConsumer<String, String>(properties);
    consumer.subscribe(Collections.singleton(topic));
    
    while (true) {
        ConsumerRecords<String, String> records = consumer.poll(100);
        for (ConsumerRecord record: records)
            System.out.println(String.format("%s: %s", record.key(), record.value()));
    }
  • For a stand-alone consumer, that assigns partitions to itself, using the default group id ("") does not cause an error. It can seek to a partition offset and fetch messages without having to worry about the empty string group id.

    Valid use of consumer with default group id
    String topic = "foo";
    Properties properties = new Properties();
    properties.put(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG, "localhost:9092");
    properties.put(ConsumerConfig.KEY_DESERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.StringDeserializer");
    properties.put(ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.StringDeserializer");
    
    KafkaConsumer consumer = new KafkaConsumer<String, String>(properties);
    
    TopicPartition tp = new TopicPartition(topic, 0);
    consumer.assign(Arrays.asList(tp));
    consumer.seekToBeginning(Arrays.asList(tp));
    System.out.println(consumer.position(tp));
    consumer.seek(tp, 5);
    System.out.println(consumer.position(tp));
    
    while (true) {
        ConsumerRecords<String, String> records = consumer.poll(100);
        for (ConsumerRecord record: records)
            System.out.println(String.format("%s: %s", record.key(), record.value()));
    }

This can be confusing to users as they would likely expect the consumer treat the default group id the same way in these two cases. Using the default empty string group id is troublesome, and consumers are not normally expected to do that in a production setting. That is why this KIP suggests some limitation to be enforced in this situation.

Public Interfaces

KafkaConsumer semantics will be slightly modified for the stand-alone consumer (that uses the assign(...) interface) to disallow committing offsets for the default group id ("").

Proposed Changes

Consumers with the default group id ("") that use assign(...) to consume from hand-picked partitions will not be able to commit offsets. If they attempt an offset commit they will receive an error. Stand-alone consumers using the default group id will have to seek to an offset before start fetching; or the auto.offset.commit value will be used to determine the starting point of fetch. They will no longer be able to start from a previously committed fetch position.

Compatibility, Deprecation, and Migration Plan

Stand-alone consumers that used the default group id for fetching messages and committing offsets would no longer be able to do that. This should be acceptable because, in general, consumers are not expected to use the default group id for offset commit, which is a dangerous and troublesome practice. This KIP aims at closing the existing gap in using the default group id. Therefore, it is advised that these consumers start using valid group names for committing offsets.

Rejected Alternatives

  • Changing the default group id from "" to null: This means still allowing the empty string be allowed for offset commit, and stand-alone consumers that relied on "" as their group id will be required to specifically specify that group id in consumer configuration. The option proposed in the KIP seems to be cleaner as it disallows a bad practice and should have minimal to no backward compatibility impact.
  • No labels