Reputation: 547
I want to do user behavior analysis on events in kafka. Can KSQL/Kafka Streams support Complex Event Processing now?
Upvotes: 1
Views: 1016
Reputation: 2218
If 'Complex Event Processing ' in your question means implementing a complex business logic then the answer is yes.
You can implement the low level Processor API of Kafka streams which lets you define your own transformers.
Btw, You can also chain this to existing topology along side Kafka streams DSL.
Upvotes: 1