Hello! I have a test case that involves a dataflow containing a spout and N serial bolts. For better understanding the dataflow looks like this: Spout->B_1->B_2->...->B_N where the "->" repersents the transition of the data from one bolt to another. Given the fact that by default Storm is using the EvenScheduler algorithm to distribute the workload between the nodes, you'll encounter the network latency issue. In this particular test case, what will be your advice to use as a Scheduler? To implement one by myself (custom scheduler) or check different approaches?
I look forward for your suggestions/ideas. Best regards, Florin
