Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: update command-config description

...

--command-config option will be also added. This would accept a file argument that points to the AdminClient configuration connection properties file (such as SSL, buffers, etc.).

Code Block
languagescala
titleBootstrap Server Option
val bootstrapServerOpt = parser.accepts("bootstrap-server", "REQUIRED: The Kafka servers to connect to, separated by commas, for instance "localhost:9091,localhost:9092". In case of providing this, a direct Zookeeper connection won't be required.")
                      .withRequiredArg
                      .describedAs("server to connect to")
                      .ofType(classOf[String])
val commandConfigOpt = parser.accepts("command-config", "Property file containing connection configs to be passed to Adminthe ClientAdminClient. " +
                      "This is used only with --bootstrap-server option.")
                      .withRequiredArg
                      .describedAs("command config property file")
                      .ofType(classOf[String])

...