[ https://issues.apache.org/jira/browse/KAFKA-3835?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15836934#comment-15836934 ]
ASF GitHub Bot commented on KAFKA-3835: --------------------------------------- Github user asfgit closed the pull request at: https://github.com/apache/kafka/pull/2417 > 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 > Assignee: Jeyhun Karimov > Priority: Minor > Labels: newbie > Fix For: 0.10.2.0, 0.10.3.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)