Storm:如何将String Array从一个螺栓传递到另一个螺栓?

时间:2015-10-01 06:55:58

标签: java arraylist apache-storm

这就是我发出数据的方式

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 bolt?

1 个答案:

答案 0 :(得分:5)

您可以毫无问题地传递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);
}