Vorlage
[demos/kafka/training] / src / main / java / de / juplo / kafka / SimpleProducer.java
index db554d7..9a9e6c2 100644 (file)
@@ -23,10 +23,7 @@ public class SimpleProducer
   public SimpleProducer(String broker, String topic, String clientId)
   {
     Properties props = new Properties();
-    props.put("bootstrap.servers", broker);
-    props.put("client.id", clientId); // Nur zur Wiedererkennung
-    props.put("key.serializer", StringSerializer.class.getName());
-    props.put("value.serializer", StringSerializer.class.getName());
+    // TODO: Konfiguration für den Producer zusammenstellen
 
     this.id = clientId;
     this.topic = topic;
@@ -59,43 +56,16 @@ public class SimpleProducer
   {
     final long time = System.currentTimeMillis();
 
-    final ProducerRecord<String, String> record = new ProducerRecord<>(
-        topic,  // 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()
-        );
-      }
-    });
+    ProducerRecord<String, String> record = null;
+    // TODO:
+    //
+    // 1. ProducerRecord<String, String> erzeugen
+    // 2. Record mit producer.send(...) verschicken
+    // Dabei beachten:
+    // * Callback implementieren und Erfolg/Fehler logge
+    // * Tipp: Aktuellen Zeitstempel auch im Callback erzeugen und
+    //   Millisekunden berechnen, die bis zum Senden verstrichen sind:
+    //   long now = System.currentTimeMillis(); // Für: now - time
 
     long now = System.currentTimeMillis();
     log.trace(