Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: improved formatting

...

Currently, the '--help' option is not recognized by some Kafka commands . For example:

Code Block
$ kafka-console-producer --help
help is not a recognized option

...

However, the '--help' option is supported by other commands:

Code Block
$ kafka-verifiable-producer --help
usage: verifiable-producer [-h] --topic TOPIC --broker-list HOST1:PORT1[,HOST2:PORT2[...]] [--max-messages MAX-MESSAGES] [--throughput THROUGHPUT] [--acks ACKS]
                           [--producer.config CONFIG_FILE] [--message-create-time CREATETIME] [--value-prefix VALUE-PREFIX]
...

To provide a consistent user experience, it would be nice to add a '--help' option to all Kafka commands.

...