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,
I'm checking out Kafka Streams and I'm having trouble coping with the "windows without end" concept. I have stream of stock prices and I want to create 1 minute OHLC bars out of them. I've created aggregation with tumbling window of specified time and output results into another kafka topic. When I register to that topic I'm seeing multiple entries per window. I've googled a little and learned that this is expected due to the way that Kafka Streams handle late arrived records but now I'm not sure that it's possible to create OHLC bars with this library. Maybe someone can point me into right direction?
Matthias J. Sax
unread,
Aug 4, 2016, 9:45:25 AM8/4/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,
not sure what tool you use to do the OHLC bars? Basically, you need to
de-duplicate the output, and only keep the latest one for each key.
Can you elaborate on you use case and end-to-end pipeline so we can give
a more precise answer?