DaveKlein, in the reply email of "Kafka Streams" on the question to use Kafka
Streams or just a consumer you specified:
> But Streams and Consumer are just libraries, so start with Consumer and if
> you find yourself doing more processing, consider moving to Kafka Streams.
I though Kafka Consum
Yes, Kafka Consumer and Kafka Streams are just libraries. My point with that,
is that it’s not difficult to switch from one to the other as your needs
evolve.
There are several ways that Kafka Streams aids in processing. It provides a
rich set of functions for transforming, filtering, branchin
Hello Miguel and Samson,
Just to add to what Dave just stated and to summarize the use cases a bit:
The Kafka documentation has a good summary here with the APIs that are
provided within the project
https://kafka.apache.org/documentation/#api
To add to what's in the documentation, we have a coup
Thanks for your responses, Dave...
This is indeed clear and informative!