Die Counter werden mit dem ``String``-Key indiziert
authorKai Moritz <kai@juplo.de>
Sun, 27 Oct 2024 12:03:25 +0000 (13:03 +0100)
committerKai Moritz <kai@juplo.de>
Sun, 10 Nov 2024 13:26:07 +0000 (14:26 +0100)
* Vorbereitung auf eine Poison-Pill Übung ist hier noch out-of-scope...

src/main/java/de/juplo/kafka/ExampleConsumer.java

index f6fb7a5..0ade38f 100644 (file)
@@ -21,7 +21,7 @@ public class ExampleConsumer implements Runnable
   private final Thread workerThread;
   private final Runnable closeCallback;
 
-  private final Map<Integer, Long> counterState = new HashMap<>();
+  private final Map<String, Long> counterState = new HashMap<>();
 
   private volatile boolean running = false;
   private long consumed = 0;
@@ -98,9 +98,8 @@ public class ExampleConsumer implements Runnable
   {
     consumed++;
     log.info("{} - {}: {}/{} - {}={}", id, offset, topic, partition, key, value);
-    Integer counted = Integer.parseInt(key);
-    Long counter = counterState.compute(counted, (k, v) -> v == null ? 1l : v + 1);
-    log.info("{} - current value for counter {}: {}", id, counted, counter);
+    Long counter = counterState.compute(key, (k, v) -> v == null ? 1l : v + 1);
+    log.info("{} - current value for counter {}: {}", id, key, counter);
   }