Process historical time series data with Kafka Streams
798 views
Skip to first unread message
Mindaugas Zickus
unread,
Jun 27, 2016, 1:55:24 PM6/27/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Confluent Platform
Hi All,
I wonder if Kafka streams is suitable for processing historical time series data.
Our use case: we have clickstream histories(time series) of multiple users and would like to calculate user specific sliding window aggregates over past periods to create features to train machine learning models.
Is it possible to bulk load historical time series data to Kafka Streams directly from some NoSql database or it is necessary to load data to Kafka topic first?
thanks, Mindis
Matthias J. Sax
unread,
Jun 27, 2016, 2:46:24 PM6/27/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to confluent...@googlegroups.com
Hi,
Streams is tightly coupled with Kafka and using the DSL you can only
read data from a Kafka topic. To load data into Kafka, you could use
Kafka connect.
As an alternative, you can use the low-lever Processor API in which you
can do basically anything you like -- of course, you need to write
custom code and lose some benefits the DSL offers.