-
Has anyone used this PC with Kafka binder? Kindly share your experience and how easy is it? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, I haven't tested the integration yet. Basically - Spring Cloud Stream handles handoff between consuming and processing of messages using binders and Spring Kafka library. What benefit Spring Cloud Stream would give versus either Spring Kafka or just Spring Boot application with Parallel Consumer? |
Beta Was this translation helpful? Give feedback.
Hi,
I haven't tested the integration yet.
But from my previous experience and understanding of how Spring Cloud Stream and Kafka Binder works - I don't think it will work with Parallel consumer (either at all or with major pitfalls).
Basically - Spring Cloud Stream handles handoff between consuming and processing of messages using binders and Spring Kafka library.
Parallel Consumer on some level does the same - it is managing polling, hand off to processing function, committing etc.
What benefit Spring Cloud Stream would give versus either Spring Kafka or just Spring Boot application with Parallel Consumer?
I am curious what specific features you are looking to get from that combination?