Caused by: java.lang.IndexOutOfBoundsException: Index: 8, Size: 8
at java.util.ArrayList.get(ArrayList.java:382)
at backtype.storm.util$acquire_random_range_id.invoke(util.clj:590)
at backtype.storm.daemon.executor$mk_shuffle_grouper$fn__3568.invoke(executor.clj:28)
...
at backtype.storm.task.OutputCollector.emit(OutputCollector.java:186)
我們得到IndexOutOfBoundsException異常,當我們有洗牌分組螺栓連接到它的前身螺栓。拋出IndexOutOfBoundsException在洗牌分組
先前的螺栓拋出這個。 它說8,因爲後繼螺栓有8個實例。
任何想法?
哪個版本的風暴? – Chiron
storm-0.9.0版本 – Fakrudeen
看起來您在分組時的元組數量不匹配。重新檢查你的配置。 – Chiron