这就是我发出数据的方式
collector.emit("stream", new Values(sessionid,tables));
其中sessionid
和tables
为ArrayList<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?
答案 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);
}