We can limit a stream for aggregation or stream-stream operations by window of time. Can we apply window of count of messages ?
For example, I want to sum of cost every for every 500 records in real time.
Is it possible to provide batch.size as we provide in consumer config in ksqlDB?
I am getting sales data in JSON format and I want to create array of every 500 messages for one of its fields.
This is what I want to achieve. Yes UDF can help me here, As per my understanding UDF needs to be programmed and converted into jar to add into plugin path if KsqlDB.
But I am using confluent cloud so where shall I put UDF’s jar to leverage it?