Storm Topology的并发度
Understanding the parallelism of a Storm topology https://github.com/nathanmarz/storm/wiki/Understanding-the-parallelism-of-a-Storm-topology 概念 一个Topology可以包含一个或多个worker(并行的跑在不同的machine上), 所以worker process就是执行一个topology的子集, 并且worker只能对应于一个topology 一个worker可用包含一个或多个executor, 每个component (spout或bolt)至少对应于一个executor, 所以可以说executor执行一个compenent的子集, 同时一个executor只能对应于一个component Task就是具体的处理逻辑对象, 一个executor线程可以执行一个或多个tasks 但一般默认每个executor只执行一个task, 所以我们往往认为task就是执行线程, 其实不然 task代表最大并发度, 一个component的tas...