Casel Chen
Casel Chen

Reputation: 547

Can KSQL/Kafka Streams support Complex Event Processing?

I want to do user behavior analysis on events in kafka. Can KSQL/Kafka Streams support Complex Event Processing now?

Upvotes: 1

Views: 1016

Answers (1)

Akhil Bojedla
Akhil Bojedla

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

Related Questions