/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.hmsonline.storm.cassandra.bolt; import java.util.List; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import backtype.storm.topology.OutputFieldsDeclarer; import backtype.storm.tuple.Tuple; import com.hmsonline.storm.cassandra.bolt.mapper.DefaultTupleCounterMapper; import com.hmsonline.storm.cassandra.bolt.mapper.TupleCounterMapper; public class CassandraCounterBatchingBolt<K, C, V> extends AbstractBatchingBolt<K, C, V> { private static final long serialVersionUID = 1L; private static final Logger LOG = LoggerFactory.getLogger(CassandraCounterBatchingBolt.class); private TupleCounterMapper<K, C> tupleMapper; public CassandraCounterBatchingBolt(String clientConfigKey, TupleCounterMapper<K, C> tupleMapper) { super(clientConfigKey, null); this.tupleMapper = tupleMapper; } @SuppressWarnings("unchecked") public CassandraCounterBatchingBolt(String keyspace, String clientConfigKey, String columnFamily, String rowKeyField, String incrementAmountField) { this(clientConfigKey, (TupleCounterMapper<K, C>) new DefaultTupleCounterMapper(keyspace, columnFamily, rowKeyField, incrementAmountField) ); } @Override public void declareOutputFields(OutputFieldsDeclarer declarer) { // we don't emit anything from here. } @Override public void executeBatch(List<Tuple> inputs) { try { this.incrementCounters(inputs, tupleMapper); // NOTE: Changed this to ack on all or none since that is how the // mutation executes. if (this.ackStrategy == AckStrategy.ACK_ON_WRITE) { for (Tuple tupleToAck : inputs) { this.collector.ack(tupleToAck); } } } catch (Throwable e) { LOG.error("Unable to write batch.", e); for (Tuple tupleToAck : inputs) { this.collector.fail(tupleToAck); } } } }