You can use something like
SubmitOptions options = new SubmitOptions();
options.set_initial_status(TopologyInitialStatus.INACTIVE);
options.set_initial_status_isSet(true);
and pass these options to StormSubmitter.submitTopology.
Cheers
On Fri, Jan 10, 2014 at 6:30 AM, Jeffrey Wolski <[email protected]> wrote:
> I've seen references to submitting a topology in the inactive state in
> previous messages, release changelogs and Storm source, but have been
> unable to figure out how to actually do so. Does anyone know how submit a
> topology in the inactive state?
>