Rückbau des expliziten regelmäßigen Commits durch den `EndlessConsumer`
[demos/kafka/training] / src / main / java / de / juplo / kafka / ApplicationRebalanceListener.java
index 3653197..ca6897c 100644 (file)
@@ -86,34 +86,4 @@ public class ApplicationRebalanceListener implements RebalanceListener
       stateRepository.save(new StateDocument(partition, state, results, offset));
     });
   }
-
-
-  @Override
-  public void beforeNextPoll()
-  {
-    partitions
-      .stream()
-      .forEach(partition ->
-      {
-        log.info("{} - persisting state & offset for partition: {}", id, partition);
-        Map<String, AdderResult> state = recordHandler.getState(partition).getState();
-        Long offset = consumer.position(new TopicPartition(topic, partition));
-        log.info(
-          "{} - offset of next unseen message for partition {} is {}",
-          id,
-          partition,
-          offset);
-        for (String user : state.keySet())
-        {
-          log.info(
-            "{} - Saved state for partition={}|user={}: {}",
-            id,
-            partition,
-            user,
-            state.get(user));
-        }
-        Map<String, List<AdderResult>> results = adderResults.getState(partition);
-        stateRepository.save(new StateDocument(partition, state, results, offset));
-      });
-  }
 }