Search in sources :

Example 6 with Pair

use of com.alipay.dw.jstorm.example.sequence.bean.Pair in project jstorm by alibaba.

the class SequenceSpout method emit.

public void emit() {
    String buffer = null;
    if (bufferLen > 0) {
        byte[] byteBuffer = new byte[bufferLen];
        for (int i = 0; i < bufferLen; i++) {
            byteBuffer[i] = (byte) random.nextInt(200);
        }
        buffer = new String(byteBuffer);
    }
    Pair trade = PairMaker.makeTradeInstance();
    Pair customer = PairMaker.makeCustomerInstance();
    TradeCustomer tradeCustomer = new TradeCustomer();
    tradeCustomer.setTrade(trade);
    tradeCustomer.setCustomer(customer);
    tradeCustomer.setBuffer(buffer);
    tradeSum.addAndGet(trade.getValue());
    customerSum.addAndGet(customer.getValue());
    collector.emit(new Values(idGenerate.nextLong(), tradeCustomer), tupleId);
    tupleId++;
    handleCounter.incrementAndGet();
    while (handleCounter.get() >= MAX_PENDING_COUNTER - 1) {
        try {
            Thread.sleep(1);
        } catch (InterruptedException ignored) {
        }
    }
    tpsCounter.count();
}
Also used : Values(backtype.storm.tuple.Values) Pair(com.alipay.dw.jstorm.example.sequence.bean.Pair) TradeCustomer(com.alipay.dw.jstorm.example.sequence.bean.TradeCustomer)

Example 7 with Pair

use of com.alipay.dw.jstorm.example.sequence.bean.Pair in project jstorm by alibaba.

the class MergeRecord method execute.

@Override
public void execute(Tuple input) {
    tpsCounter.count();
    Long tupleId = input.getLong(0);
    Pair pair = (Pair) input.getValue(1);
    Pair trade = null;
    Pair customer = null;
    Tuple tradeTuple = null;
    Tuple customerTuple = null;
    if (input.getSourceComponent().equals(SequenceTopologyDef.CUSTOMER_BOLT_NAME)) {
        customer = pair;
        customerTuple = input;
        tradeTuple = tradeMap.remove(tupleId);
        if (tradeTuple == null) {
            customerMap.put(tupleId, input);
            return;
        }
        trade = (Pair) tradeTuple.getValue(1);
    } else if (input.getSourceComponent().equals(SequenceTopologyDef.TRADE_BOLT_NAME)) {
        trade = pair;
        tradeTuple = input;
        customerTuple = customerMap.remove(tupleId);
        if (customerTuple == null) {
            tradeMap.put(tupleId, input);
            return;
        }
        customer = (Pair) customerTuple.getValue(1);
    } else {
        LOG.info("Unknow source component: " + input.getSourceComponent());
        collector.fail(input);
        return;
    }
    tradeSum.addAndGet(trade.getValue());
    customerSum.addAndGet(customer.getValue());
    collector.ack(tradeTuple);
    collector.ack(customerTuple);
    TradeCustomer tradeCustomer = new TradeCustomer();
    tradeCustomer.setTrade(trade);
    tradeCustomer.setCustomer(customer);
    collector.emit(new Values(tupleId, tradeCustomer));
}
Also used : AtomicLong(java.util.concurrent.atomic.AtomicLong) Values(backtype.storm.tuple.Values) Tuple(backtype.storm.tuple.Tuple) Pair(com.alipay.dw.jstorm.example.sequence.bean.Pair) TradeCustomer(com.alipay.dw.jstorm.example.sequence.bean.TradeCustomer)

Example 8 with Pair

use of com.alipay.dw.jstorm.example.sequence.bean.Pair in project jstorm by alibaba.

the class SplitRecord method execute.

public void execute(Tuple tuple, BasicOutputCollector collector) {
    tpsCounter.count();
    Long tupleId = tuple.getLong(0);
    Object obj = tuple.getValue(1);
    if (obj instanceof TradeCustomer) {
        TradeCustomer tradeCustomer = (TradeCustomer) obj;
        Pair trade = tradeCustomer.getTrade();
        Pair customer = tradeCustomer.getCustomer();
        collector.emit(SequenceTopologyDef.TRADE_STREAM_ID, new Values(tupleId, trade));
        collector.emit(SequenceTopologyDef.CUSTOMER_STREAM_ID, new Values(tupleId, customer));
    } else if (obj != null) {
        LOG.info("Unknow type " + obj.getClass().getName());
    } else {
        LOG.info("Nullpointer ");
    }
}
Also used : Values(backtype.storm.tuple.Values) TradeCustomer(com.alipay.dw.jstorm.example.sequence.bean.TradeCustomer) Pair(com.alipay.dw.jstorm.example.sequence.bean.Pair)

Example 9 with Pair

use of com.alipay.dw.jstorm.example.sequence.bean.Pair in project jstorm by alibaba.

the class PairSerializer method read.

@Override
public Pair read(Kryo kryo, Input input, Class<Pair> arg2) {
    long value = input.readLong();
    String key = input.readString();
    Pair inner = new Pair();
    inner.setKey(key);
    inner.setValue(value);
    return inner;
}
Also used : Pair(com.alipay.dw.jstorm.example.sequence.bean.Pair)

Example 10 with Pair

use of com.alipay.dw.jstorm.example.sequence.bean.Pair in project jstorm by alibaba.

the class TradeCustomerSerializer method read.

@Override
public TradeCustomer read(Kryo kryo, Input input, Class<TradeCustomer> arg2) {
    Pair custormer = kryo.readObject(input, Pair.class);
    Pair trade = kryo.readObject(input, Pair.class);
    long timeStamp = input.readLong();
    String buffer = input.readString();
    TradeCustomer inner = new TradeCustomer(timeStamp, trade, custormer, buffer);
    return inner;
}
Also used : Pair(com.alipay.dw.jstorm.example.sequence.bean.Pair) TradeCustomer(com.alipay.dw.jstorm.example.sequence.bean.TradeCustomer)

Aggregations

Pair (com.alipay.dw.jstorm.example.sequence.bean.Pair)12 Values (backtype.storm.tuple.Values)8 TradeCustomer (com.alipay.dw.jstorm.example.sequence.bean.TradeCustomer)8 AtomicLong (java.util.concurrent.atomic.AtomicLong)3 Tuple (backtype.storm.tuple.Tuple)2