0
votes

Consider following configuration for a topology:
#spouts: 2
#bolt: 8
#workers: 3

enter image description here

With this configuration one of the workers won't have spout and If we apply localorshuffle grouping between spout and bolt, does worker-3 bolts receive any tuple ?

1
With localOrShuffle grouping, it sends to remote only if no local task is found - Tarun Chabarwal

1 Answers

2
votes

No, not as far as I know. When you use localOrShuffle grouping, you're saying that you want to send to any bolts that are within the same JVM if possible, and only send outside the JVM if there is no appropriate bolt task inside the VM.