在Storm中實(shí)現(xiàn)數(shù)據(jù)分組可以通過(guò)使用FieldsGrouping或者CustomGrouping來(lái)實(shí)現(xiàn)。
builder.setBolt("boltName", new BoltClass())
.fieldsGrouping("spoutName", new Fields("field1", "field2"));
builder.setBolt("boltName", new BoltClass())
.customGrouping("spoutName", new CustomGroupingClass());
以上是兩種在Storm中實(shí)現(xiàn)數(shù)據(jù)分組的方法,根據(jù)具體的需求選擇合適的方法來(lái)實(shí)現(xiàn)數(shù)據(jù)分組。