This portion of the Storm UI shows the list of topologies running in the Storm cluster, along with their ID, the number of workers assigned to the topology, the number of executors, number of tasks, uptime, and so on.
Let's deploy the sample topology (if it is not running already) in a remote Storm cluster by running the following command:
$> cd $STORM_HOME $> bin/storm jar ~/storm_example-0.0.1-SNAPSHOT-jar-with-dependencies.jar com.stormadvance.storm_example.SampleStormClusterTopology storm_example
We have created the SampleStormClusterTopology topology by defining three worker processes, two executors for SampleSpout, and four executors for SampleBolt.
After submitting SampleStormClusterTopology on the Storm cluster, ...