Details
-
New Feature
-
Status: Open
-
Major
-
Resolution: Unresolved
-
None
-
None
-
None
Description
imported from https://github.com/gearpump/gearpump/issues/1649.
Storm has a grouping strategy called LocalOrShuffleGrouping which will have better performance than ShuffleGrouping in theory.
Local or shuffle grouping: If the target bolt has one or more tasks in the same worker process, tuples will be shuffled to just those in-process tasks. Otherwise, this acts like a normal shuffle grouping.
This requires context information of tasks in the same Executor.