Versions Compared

Key

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

...

Public Interfaces

Add an option to the streams reset tool.


internalTopicsOption = optionParser.accepts("internal-topics", "Comma-separated list of internal topics. If specified, these are the only topics that the tool will attempt to delete.")
.withRequiredArg()
.ofType(String.class)
.withValuesSeparatedBy(',')
.describedAs("list");


...

  1. Do a dry-run to check the internal topics marked for deletionthat will be deleted.
  2. If everything looks okay, execute without dry-run. Otherwise, specify the set of internal-topics to be deleted with `--internal-topics`.

...