Die Offsets werden ausgegeben, wenn eine Partition zugeteilt/entzogen wird
[demos/kafka/training] / src / main / java / de / juplo / kafka / EndlessConsumer.java
index c2d4447..6af3765 100644 (file)
@@ -37,7 +37,8 @@ public class EndlessConsumer implements Runnable
   private KafkaConsumer<String, String> consumer = null;
 
 
-  private final Map<Integer, Map<String, Integer>> seen = new HashMap<>();
+  private final Map<Integer, Map<String, Long>> seen = new HashMap<>();
+  private final Map<Integer, Long> offsets = new HashMap<>();
 
 
   public EndlessConsumer(
@@ -80,15 +81,24 @@ public class EndlessConsumer implements Runnable
         {
           partitions.forEach(tp ->
           {
-            log.info("{} - removing partition: {}", id, tp);
-            Map<String, Integer> removed = seen.remove(tp.partition());
+            Integer partition = tp.partition();
+            Long newOffset = consumer.position(tp);
+            Long oldOffset = offsets.remove(partition);
+            log.info(
+                "{} - removing partition: {}, consumed {} records (offset {} -> {})",
+                id,
+                partition,
+                newOffset - oldOffset,
+                oldOffset,
+                newOffset);
+            Map<String, Long> removed = seen.remove(partition);
             for (String key : removed.keySet())
             {
               log.info(
                   "{} - Seen {} messages for partition={}|key={}",
                   id,
                   removed.get(key),
-                  tp.partition(),
+                  partition,
                   key);
             }
           });
@@ -99,8 +109,11 @@ public class EndlessConsumer implements Runnable
         {
           partitions.forEach(tp ->
           {
-            log.info("{} - adding partition: {}", id, tp);
-            seen.put(tp.partition(), new HashMap<>());
+            Integer partition = tp.partition();
+            Long offset = consumer.position(tp);
+            log.info("{} - adding partition: {}, offset={}", id, partition, offset);
+            offsets.put(partition, offset);
+            seen.put(partition, new HashMap<>());
           });
         }
       });
@@ -127,12 +140,12 @@ public class EndlessConsumer implements Runnable
 
           Integer partition = record.partition();
           String key = record.key() == null ? "NULL" : record.key();
-          Map<String, Integer> byKey = seen.get(partition);
+          Map<String, Long> byKey = seen.get(partition);
 
           if (!byKey.containsKey(key))
-            byKey.put(key, 0);
+            byKey.put(key, 0l);
 
-          int seenByKey = byKey.get(key);
+          long seenByKey = byKey.get(key);
           seenByKey++;
           byKey.put(key, seenByKey);
         }
@@ -176,7 +189,7 @@ public class EndlessConsumer implements Runnable
     }
   }
 
-  public Map<Integer, Map<String, Integer>> getSeen()
+  public Map<Integer, Map<String, Long>> getSeen()
   {
     return seen;
   }