Versions Compared

Key

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

...

kafka-topics will be modified to support creating namespaces, as shown below.

Code Block
kafka-topics.sh --zookeeper <ZK_CONNECTION_STRING> --create --namespace <NAMESPACE>

Creating namespace will be required before it can be used. There is no plan of supporting auto namespace creation. If a multi-tiered namespace is created, it will create all the tiers specified in the namespace. For instance, the command below will create three namespaces, i.e., org, org.apache and org.apache.kafka.

Code Block
kafka-topics.sh --zookeeper <ZK_CONNECTION_STRING> --create --namespace org.apache.kafka

 

List
Delete

Changes in Storage Layouts

...