DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
- Add
--bootstrap-servertokafka-producer-perf-test.shbringing it into line with all the other tools. Because users will already have config files which specify the bootstrap server and there's no need to break these, the new--bootstrap-serverflag is optional. If provided, it takes precedence over specifyingbootstrap.serversin the configuration file. The order of precedence for configuring the bootstrap server from highest to lowest is--bootstrap-server, then--command-property(previously called--producer-props), then--command-config. - Introduce consistent use of
--command-propertyas a way of providing individual configuration properties without use of a configuration file. Replace--producer-propswith--command-propertyinkafka-producer-perf-test.sh. Add--command-propertytokafka-consumer-perf-test.shandkafka-share-consumer-perf-test.sh. - For the console producer and consumer tools, replace
--producer-propertyand--consumer-propertywith--command-property. - For all tools which support a properties file, replace the existing option for specifying a configuration properties file with
--command-config. This eliminates the guesswork about whether a particular tool uses the producer, consumer or admin APIs and then chose to pass this knowledge into the original names of the command-line arguments. - Add
--reporting-intervaltokafka-producer-perf-test.sh. The tools already has a reporting interval hard-coded to 5000ms, so this simply makes it configurable like for the consumer performance tests, with a default of 5000ms. - Replace
--propertywith--formatter-propertyinkafka-console-consumer.shandkafka-console-share-consumer.sh. This argument is used to configure the formatter, so this names it accordingly. - Replace
--propertywith--reader-propertyinkafka-console-producer.sh. This argument is used to configure the message reader, so this names it accordingly and also matches the existing--reader-configargument. - Replace
--messageswith--num-recordsinkafka-consumer-perf-test.shandkafka-share-consumer-perf-test.sh.
...