class Kafkat::ClusterRestart::Subcommands::Help

Public Instance Methods

run() click to toggle source
# File lib/kafkat/command/cluster_restart.rb, line 29
def run
  puts 'cluster-restart help                Print Help and exit'
  puts 'cluster-restart reset               Clean up the restart state'
  puts 'cluster-restart start               Initialize the cluster-restart session for the cluster'
  puts 'cluster-restart next                Calculate the next broker to restart based on the current state'
  puts 'cluster-restart good <broker>       Mark this broker as successfully restarted'
  puts 'cluster-restart log                 Print the state of the brokers'
  puts 'cluster-restart restore <file>      Start a new session and restore the state defined in that file'
end