From: Kai Moritz Date: Fri, 25 Mar 2022 10:19:03 +0000 (+0100) Subject: Code reorganisiert, um Ă„nderungen vergleichbarer zu machen X-Git-Tag: notnagel~7^2~1 X-Git-Url: https://juplo.de/gitweb/?p=demos%2Fkafka%2Ftraining;a=commitdiff_plain;h=1b7afcf70fea7922f795ededaaec9277dacd9ffd Code reorganisiert, um Ă„nderungen vergleichbarer zu machen --- diff --git a/src/main/java/de/juplo/kafka/SimpleProducer.java b/src/main/java/de/juplo/kafka/SimpleProducer.java index 5f57925..357e07a 100644 --- a/src/main/java/de/juplo/kafka/SimpleProducer.java +++ b/src/main/java/de/juplo/kafka/SimpleProducer.java @@ -6,12 +6,20 @@ import org.apache.kafka.clients.producer.ProducerRecord; import org.apache.kafka.common.serialization.StringSerializer; import java.util.Properties; +import java.util.concurrent.ExecutorService; +import java.util.concurrent.Future; @Slf4j public class SimpleProducer { - public static void main(String[] args) throws Exception + private final String id; + private final String topic; + private final KafkaProducer producer; + + private long produced = 0; + + public SimpleProducer(String clientId, String topic) { // tag::create[] Properties props = new Properties(); @@ -22,67 +30,88 @@ public class SimpleProducer KafkaProducer producer = new KafkaProducer<>(props); // end::create[] - String id = "P"; + this.id = clientId; + this.topic = topic; + this.producer = producer; + } + + public void run() + { long i = 0; try { for (; i < 100 ; i++) { - final long time = System.currentTimeMillis(); - - final ProducerRecord record = new ProducerRecord<>( - "test", // Topic - Long.toString(i%10), // Key - Long.toString(i) // Value - ); - - producer.send(record, (metadata, e) -> - { - long now = System.currentTimeMillis(); - if (e == null) - { - // HANDLE SUCCESS - log.debug( - "{} - Sent key={} message={} partition={}/{} timestamp={} latency={}ms", - id, - record.key(), - record.value(), - metadata.partition(), - metadata.offset(), - metadata.timestamp(), - now - time - ); - } - else - { - // HANDLE ERROR - log.error( - "{} - ERROR key={} timestamp={} latency={}ms: {}", - id, - record.key(), - metadata == null ? -1 : metadata.timestamp(), - now - time, - e.toString() - ); - } - }); - - long now = System.currentTimeMillis(); - log.trace( - "{} - Queued #{} key={} latency={}ms", - id, - i, - record.key(), - now - time - ); + send(Long.toString(i%10), Long.toString(i)); } + + log.info("{} - Done", id); } finally { log.info("{}: Closing the KafkaProducer", id); producer.close(); - log.info("{}: Exiting!", id); + log.info("{}: Produced {} messages in total, exiting!", id, produced); } } + + void send(String key, String value) + { + final long time = System.currentTimeMillis(); + + final ProducerRecord record = new ProducerRecord<>( + "test", // Topic + key, // Key + value // Value + ); + + producer.send(record, (metadata, e) -> + { + long now = System.currentTimeMillis(); + if (e == null) + { + // HANDLE SUCCESS + produced++; + log.debug( + "{} - Sent key={} message={} partition={}/{} timestamp={} latency={}ms", + id, + record.key(), + record.value(), + metadata.partition(), + metadata.offset(), + metadata.timestamp(), + now - time + ); + } + else + { + // HANDLE ERROR + log.error( + "{} - ERROR key={} timestamp={} latency={}ms: {}", + id, + record.key(), + metadata == null ? -1 : metadata.timestamp(), + now - time, + e.toString() + ); + } + }); + + long now = System.currentTimeMillis(); + log.trace( + "{} - Queued #{} key={} latency={}ms", + id, + value, + record.key(), + now - time + ); + } + + + public static void main(String[] args) throws Exception + { + SimpleProducer producer = new SimpleProducer("P", "test"); + producer.run(); + } }