Skip to content

Instantly share code, notes, and snippets.

@asif31iqbal
Last active February 2, 2017 16:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asif31iqbal/10c53b43fba67fccd0a9af09ebb6778e to your computer and use it in GitHub Desktop.
Save asif31iqbal/10c53b43fba67fccd0a9af09ebb6778e to your computer and use it in GitHub Desktop.
Some facts about Apache Storm
Each spout and bolt can have one or more tasks, each of which corresponds to a thread.
Each topology can run under one or more JVMs. For example, if the combined parallelism (number of tasks) of the topology is 300 and 50
workers are allocated, then each worker will execute 6 tasks (as threads within the worker). Storm tries to spread the tasks evenly
across all the workers.
Refer to this [http://storm.apache.org/releases/1.0.1/Understanding-the-parallelism-of-a-Storm-topology.html]
also http://stackoverflow.com/questions/17257448/what-is-the-task-in-storm-parallelism
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment