[jira] [Resolved] (KAFKA-6987) Reimplement KafkaFuture with CompletableFuture

2021-07-07 Thread Konstantine Karantasis (Jira)
[ https://issues.apache.org/jira/browse/KAFKA-6987?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Konstantine Karantasis resolved KAFKA-6987. --- Resolution: Fixed > Reimplement KafkaFuture with CompletableFut

[jira] [Created] (KAFKA-12227) Return CompletableFuture from KafkaProducer.send

2021-01-20 Thread Chia-Ping Tsai (Jira)
Chia-Ping Tsai created KAFKA-12227: -- Summary: Return CompletableFuture from KafkaProducer.send Key: KAFKA-12227 URL: https://issues.apache.org/jira/browse/KAFKA-12227 Project: Kafka Issue

Re: CompletableFuture?

2020-01-17 Thread radai
gt; > I'm interested in picking this up as I have already worked on internal code > bases to make a wrapper on current Api to make it expose CompletableFuture > (using callbacks in the current api). > > Could you give me comment/edit access to the confluence doc, I can write up > the new

Re: CompletableFuture?

2020-01-15 Thread Vamsi Subahsh
Hi, I'm interested in picking this up as I have already worked on internal code bases to make a wrapper on current Api to make it expose CompletableFuture (using callbacks in the current api). Could you give me comment/edit access to the confluence doc, I can write up the new api and the logic

Re: CompletableFuture?

2020-01-15 Thread Ismael Juma
Good question. I have a draft KIP for the producer change: https://cwiki.apache.org/confluence/display/KAFKA/KIP-XXX%3A+Return+CompletableFuture+from+KafkaProducer.send I was still debating which was the best path forward (i.e. what should be in rejected alternatives versus the actual proposal

CompletableFuture?

2020-01-14 Thread radai
Hi With kip-118 (Drop Support for Java 7) officially done, is there a timeline replacing usage of "plain" Futures with java 8 CompletableFutures? kafka 2.0 was mentioned at some point as a possible target for this ...