Gagan
Gagan

Reputation: 1923

Data processing in Kafka without Storm/Spark streaming

I am aware that one can use Storm or Spark streaming to do real time data processing with kafka but i want to ask if there is any functionality in kafka that is similar to Flume interceptor wherein data cleaning, etc can be done on the fly in an event.

Upvotes: 0

Views: 176

Answers (2)

Nautilus
Nautilus

Reputation: 2286

What you are looking for is Kafka Interceptors that are actually inspired in Flume Interceptor Interface. Like @Lundahl is pointing out the current version doesn't support this, but the next one will.

Upvotes: 1

Lundahl
Lundahl

Reputation: 6562

Currently there is not such a feature in a released version of Kafka but the next release (0.10.0.0 according to the roadmap) will have Kafka Streams which looks to be similar to what you ask for.

Upvotes: 1

Related Questions