Hey @John Kowtko Data Ingestion is via Real-Time and update data is also received in real-time.
@channel
We have the following data being pumped into Druid (considering a simple example)
orderId, status, time, value
1, false, 2023-11-010100:00, 2
1, true, 2023-11-010100:00, 3
2, false, 2023-11-010100:00, 4
2, false, 2023-11-010100:00, 5
3, true, 2023-11-010100:00, 7
And Data for any orderId can be inserted with updated status. We are looking for an effective way to get aggregations like "Number of OrderIds which are marked true and Number of OrderIds which are marked as *false*" Note that we would like to consider only the latest entry of orderId for this aggregation.
Thanks in Advance.