本文整理汇总了Java中org.apache.storm.tuple.Tuple.getIntegerByField方法的典型用法代码示例。如果您正苦于以下问题:Java Tuple.getIntegerByField方法的具体用法?Java Tuple.getIntegerByField怎么用?Java Tuple.getIntegerByField使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.storm.tuple.Tuple
的用法示例。
在下文中一共展示了Tuple.getIntegerByField方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: execute
import org.apache.storm.tuple.Tuple; //导入方法依赖的package包/类
public void execute(Tuple tuple) {
if(tuple.getSourceComponent().equals(UPSTREAM_COMPONENT_ID)){
String word = tuple.getStringByField(UPSTREAM_FIEDLS);
if(word.length() <= 0) {
collector.ack(tuple);
return;
}
collector.emit(Constraints.coinFileds, new Values(word));
Key ky = new Key(word.getBytes());
if(bf.membershipTest(ky))
collector.emit(Constraints.hotFileds, tuple, new Values(word));
else
collector.emit(Constraints.nohotFileds, tuple, new Values(word));
}else {
String key = tuple.getStringByField(Constraints.wordFileds);
Integer type = tuple.getIntegerByField(Constraints.typeFileds);
Key hk = new Key(key.getBytes());
if(!bf.membershipTest(hk) && type.equals(1))
bf.add(hk);
if(bf.membershipTest(hk) && type.equals(0))
bf.delete(hk);
}
collector.ack(tuple);
}
示例2: execute
import org.apache.storm.tuple.Tuple; //导入方法依赖的package包/类
public void execute(Tuple tuple) {
final String word = tuple.getStringByField(Constraints.wordFileds);
Integer count = tuple.getIntegerByField(Constraints.coinCountFileds);
predictorHotKeyUtil.PredictorHotKey(word,count);
if(predictorHotKeyUtil.isHotKey(word))
collector.emit(new Values(word,1));
predictorHotKeyUtil.SynopsisHashMapRandomDump(new DumpRemoveHandler() {
@Override
public void dumpRemove(String key) {
collector.emit(new Values(word,1));
}
});
collector.ack(tuple);
}