Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This page is meant as a template for writing a KIP. To create a KIP choose Tools->Copy on this page and modify with your content and replace the heading with the next KIP number and a description of your issue. Replace anything in italics with your own description.

Status

Current state:  "Under Discussion"Superseded by KIP-604

Discussion thread: here

JIRA: here

...

In kafka-topic.sh, we expect to use --if-exists to ensure that the topic to create or change exists. Similarly, we expect to use --if-not-exists to ensure that the topic to create or change does not exist. Currently, only ZookeeperTopicService supports these two options and we want to introduce them . As a result, specifying --bootstrap-server option with either one of them will trigger an error.

We want to introduce --if-exists and --if-not-exists options to AdminClientTopicService.

...

The topic command will accept either --if-exist or --if-not-exist option together with --bootstrap-server option.

Proposed Changes

Implement the logic in AdminClientTopicService like what ZookeeperTopicService has.

...