Storm:如何将字符串数组从一个螺栓传递到另一个螺栓?

Storm : How to pass String Array from one bolt to another?

这就是我发出数据的方式

collector.emit("stream", new Values(sessionid,tables));

其中 sessionidtablesArrayList<String>

我不确定将接收数据的螺栓将如何获取数据,因为我没有找到任何东西来获取元组中的值。

这是我接收螺栓的执行方法的样子。

public void execute(Tuple input, BasicOutputCollector collector) {
     ArrayList<String> keyspace = input./*What to add here*/(0);
     ArrayList<String> table = input./*What to add here*/(1);    
}

或者,我正在考虑将 ArrayList 的值合并为逗号分隔的字符串并将其作为字符串传递,然后将其拆分并保存在接收螺栓中的 ArrayList 中。

但是,有什么干净的方法可以将 ArrayList 传递给 Storm 螺栓吗?

您可以顺利通过 ArrayList。您只需要使用 Tuple.getValue(int)(或 Tuple.getValueByField(String))并转换为正确的类型:

public void execute(Tuple input, BasicOutputCollector collector) {
    ArrayList<String> keyspace = (ArrayList<String>)input.getValue(0);
    ArrayList<String> table = (ArrayList<String>)input.getValue(1);
}