Vereinfachte Version der auf Spring Kafka basierenden Implementierung
[demos/kafka/training] / src / main / java / de / juplo / kafka / ApplicationRecordHandler.java
index ce340a7..2075781 100644 (file)
@@ -1,48 +1,84 @@
 package de.juplo.kafka;
 
+import lombok.RequiredArgsConstructor;
 import lombok.extern.slf4j.Slf4j;
-import org.apache.kafka.clients.consumer.ConsumerRecord;
+import org.springframework.kafka.annotation.KafkaHandler;
+import org.springframework.kafka.annotation.KafkaListener;
+import org.springframework.kafka.support.KafkaHeaders;
+import org.springframework.messaging.handler.annotation.Header;
+import org.springframework.messaging.handler.annotation.Payload;
 
+import java.time.Duration;
 import java.util.HashMap;
 import java.util.Map;
+import java.util.Optional;
 
 
+@RequiredArgsConstructor
 @Slf4j
-public class ApplicationRecordHandler implements RecordHandler<String, String>
+@KafkaListener(
+    id = "${spring.kafka.consumer.group-id}",
+    topics = "${sumup.adder.topic}")
+public class ApplicationRecordHandler
 {
+  private final AdderResults results;
+  private final Optional<Duration> throttle;
+  private final String id;
+
   private final Map<Integer, AdderBusinessLogic> state = new HashMap<>();
 
 
-  @Override
-  public void accept(ConsumerRecord<String, String> record)
+  @KafkaHandler
+  public void addNumber(
+      @Header(KafkaHeaders.RECEIVED_PARTITION_ID)
+      Integer partition,
+      @Header(KafkaHeaders.RECEIVED_MESSAGE_KEY)
+      String user,
+      @Payload
+      MessageAddNumber message)
+  {
+    log.debug("{} - Received {} for {} on {}", id, message, user, partition);
+    state.get(partition).addToSum(user, message.getNext());
+    throttle();
+  }
+
+  @KafkaHandler
+  public void calculateSum(
+      @Header(KafkaHeaders.RECEIVED_PARTITION_ID)
+      Integer partition,
+      @Header(KafkaHeaders.RECEIVED_MESSAGE_KEY)
+      String user,
+      @Payload
+      MessageCalculateSum message)
   {
-    Integer partition = record.partition();
-    String user = record.key();
-    String message = record.value();
+    AdderResult result = state.get(partition).calculate(user);
+    log.info("{} - New result for {}: {}", id, user, result);
+    results.addResults(partition, user, result);
+    throttle();
+  }
 
-    if (message.equals("CALCULATE"))
+  private void throttle()
+  {
+    if (throttle.isPresent())
     {
-      Long result = state.get(partition).calculate(user);
-      log.info("New result for {}: {}", user, result);
-      return;
+      try
+      {
+        Thread.sleep(throttle.get().toMillis());
+      }
+      catch (InterruptedException e)
+      {
+        log.warn("{} - Intrerrupted while throttling: {}", id, e);
+      }
     }
-
-    state.get(partition).addToSum(user, Integer.parseInt(message));
   }
 
-  protected void addPartition(Integer partition, Map<String, Long> state)
+  protected void addPartition(Integer partition, Map<String, AdderResult> state)
   {
     this.state.put(partition, new AdderBusinessLogic(state));
   }
 
-  protected Map<String, Long> removePartition(Integer partition)
+  protected Map<String, AdderResult> removePartition(Integer partition)
   {
     return this.state.remove(partition).getState();
   }
-
-
-  public Map<Integer, AdderBusinessLogic> getState()
-  {
-    return state;
-  }
 }