We're having trouble mapping our problem to Flink.
- For each incoming item
- Generate tuples of the item crossed with a data set
- Filter the tuples based on a condition
- Know the count of matching tuples
This seems to be mashup of DataStream and DataSet, but it appears you can't operate with those together. We are also wondering if kicking off a batch job for each incoming item is a feasible approach. We don't have time window constraints.
Any recommendations would be greatly appreciated.
- Charlie