[ https://issues.apache.org/jira/browse/KAFKA-3835?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15774951#comment-15774951 ]
Ankush Puri commented on KAFKA-3835: ------------------------------------ [~damianguy] Hi there, we've been extensively using Kafka in almost all of our data pipelines and I would love to contribute to this awesome project. I believe a story like this one would be a great start to understand the process to contribute. Can you please give me required privileges so that I can start working on this ? Thanks..! > Streams is creating two ProducerRecords for each send via RecordCollector > ------------------------------------------------------------------------- > > Key: KAFKA-3835 > URL: https://issues.apache.org/jira/browse/KAFKA-3835 > Project: Kafka > Issue Type: Bug > Components: streams > Affects Versions: 0.10.0.0 > Reporter: Damian Guy > Priority: Minor > Labels: newbie > Fix For: 0.10.2.0 > > > The RecordCollector.send(..) method below, currently receives a > ProducerRecord from its caller and then creates another one to forward on to > its producer. The creation of 2 ProducerRecords should be removed. > {code} > public <K, V> void send(ProducerRecord<K, V> record, Serializer<K> > keySerializer, Serializer<V> valueSerializer, > StreamPartitioner<K, V> partitioner) > {code} > We could replace the above method with > {code} > public <K, V> void send(String topic, > K key, > V value, > Integer partition, > Long timestamp, > Serializer<K> keySerializer, > Serializer<V> valueSerializer, > StreamPartitioner<K, V> partitioner) > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)