Hello! In TopologyBuilder, parallelism_hint is documented as:
"* @param parallelism_hint the number of tasks that should be assigned to execute this bolt. Each task will run on a thread in a process somwehere around the cluster." Is this correct? According to http://storm.apache.org/documentation/Understanding-the-parallelism-of-a-Storm-topology.html, parallelism_hint should control the number of executors, not the number of tasks. Tasks are according to this document set by utilizing "setNumTasks". Best regards, Alexander
