Github user revans2 commented on a diff in the pull request:

    https://github.com/apache/storm/pull/1808#discussion_r91613603
  
    --- Diff: 
external/storm-kafka-client/src/main/java/org/apache/storm/kafka/bolt/KafkaBolt.java
 ---
    @@ -0,0 +1,194 @@
    +/**
    + * 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 org.apache.storm.kafka.bolt;
    +
    +import org.apache.storm.task.OutputCollector;
    +import org.apache.storm.task.TopologyContext;
    +import org.apache.storm.topology.OutputFieldsDeclarer;
    +import org.apache.storm.topology.base.BaseRichBolt;
    +import org.apache.storm.tuple.Tuple;
    +import org.apache.storm.utils.TupleUtils;
    +import org.apache.kafka.clients.producer.KafkaProducer;
    +import org.apache.kafka.clients.producer.ProducerRecord;
    +import org.apache.kafka.clients.producer.RecordMetadata;
    +import org.apache.kafka.clients.producer.Callback;
    +import org.slf4j.Logger;
    +import org.slf4j.LoggerFactory;
    +import org.apache.storm.kafka.bolt.mapper.FieldNameBasedTupleToKafkaMapper;
    +import org.apache.storm.kafka.bolt.mapper.TupleToKafkaMapper;
    +import org.apache.storm.kafka.bolt.selector.DefaultTopicSelector;
    +import org.apache.storm.kafka.bolt.selector.KafkaTopicSelector;
    +import java.util.concurrent.Future;
    +import java.util.concurrent.ExecutionException;
    +import java.util.Map;
    +import java.util.Properties;
    +
    +
    +/**
    + * Bolt implementation that can send Tuple data to Kafka
    + * <p/>
    + * It expects the producer configuration and topic in storm config under
    + * <p/>
    + * 'kafka.broker.properties' and 'topic'
    + * <p/>
    + * respectively.
    + * <p/>
    + * This bolt uses 0.8.2 Kafka Producer API.
    + * <p/>
    + * It works for sending tuples to older Kafka version (0.8.1).
    + */
    +public class KafkaBolt<K, V> extends BaseRichBolt {
    +    private static final long serialVersionUID = -5205886631877033478L;
    +
    +    private static final Logger LOG = 
LoggerFactory.getLogger(KafkaBolt.class);
    +
    +    public static final String TOPIC = "topic";
    +
    +    private KafkaProducer<K, V> producer;
    +    private OutputCollector collector;
    +    private TupleToKafkaMapper<K,V> mapper;
    +    private KafkaTopicSelector topicSelector;
    +    private Properties boltSpecfiedProperties = new Properties();
    +    /**
    +     * With default setting for fireAndForget and async, the callback is 
called when the sending succeeds.
    +     * By setting fireAndForget true, the send will not wait at all for 
kafka to ack.
    +     * "acks" setting in 0.8.2 Producer API config doesn't matter if 
fireAndForget is set.
    +     * By setting async false, synchronous sending is used. 
    +     */
    +    private boolean fireAndForget = false;
    +    private boolean async = true;
    +
    +    public KafkaBolt() {}
    +
    +    public KafkaBolt<K,V> withTupleToKafkaMapper(TupleToKafkaMapper<K,V> 
mapper) {
    +        this.mapper = mapper;
    +        return this;
    +    }
    +
    +    public KafkaBolt<K, V> withTopicSelector(String topic) {
    +        return withTopicSelector(new DefaultTopicSelector(topic));
    +    }
    +    
    +    public KafkaBolt<K,V> withTopicSelector(KafkaTopicSelector selector) {
    +        this.topicSelector = selector;
    +        return this;
    +    }
    +
    +    public KafkaBolt<K,V> withProducerProperties(Properties 
producerProperties) {
    +        this.boltSpecfiedProperties = producerProperties;
    +        return this;
    +    }
    +
    +    @Override
    +    public void prepare(Map stormConf, TopologyContext context, 
OutputCollector collector) {
    +        //for backward compatibility.
    +        if(mapper == null) {
    +            this.mapper = new FieldNameBasedTupleToKafkaMapper<K,V>();
    +        }
    +
    +        //for backward compatibility.
    +        if(topicSelector == null) {
    +            if(stormConf.containsKey(TOPIC)) {
    +                this.topicSelector = new DefaultTopicSelector((String) 
stormConf.get(TOPIC));
    +            } else {
    +                throw new IllegalArgumentException("topic should be 
specified in bolt's configuration");
    +            }
    +        }
    +
    +        producer = mkProducer(boltSpecfiedProperties);
    +        this.collector = collector;
    +    }
    +    
    +    /**
    +     * Intended to be overridden for tests.  Make the producer from props
    +     */
    +    protected KafkaProducer<K, V> mkProducer(Properties props) {
    +        return new KafkaProducer<>(props);
    +    }
    +
    +    @Override
    +    public void execute(final Tuple input) {
    +        if (TupleUtils.isTick(input)) {
    +          collector.ack(input);
    +          return; // Do not try to send ticks to Kafka
    +        }
    +        K key = null;
    +        V message = null;
    +        String topic = null;
    +        try {
    +            key = mapper.getKeyFromTuple(input);
    +            message = mapper.getMessageFromTuple(input);
    +            topic = topicSelector.getTopic(input);
    +            if (topic != null ) {
    +                Callback callback = null;
    +
    +                if (!fireAndForget && async) {
    +                    callback = new Callback() {
    +                        @Override
    +                        public void onCompletion(RecordMetadata ignored, 
Exception e) {
    +                            synchronized (collector) {
    +                                if (e != null) {
    +                                    collector.reportError(e);
    +                                    collector.fail(input);
    --- End diff --
    
    collector could always be called from background threads.  There, however, 
was a race in the original shuffle grouping that could crash your worker if you 
didn't synchronize around calls to the collector.  I fixed that a long time 
ago, but people are still very nervous about it, or are still confused about it.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to