Is it possible for Flink's CEP library to emit the data per input received? even if there is not any pattern matched? for example suppose there is this pattern
pattern: ba
input stream: a b a a
expect output stream is: F F T F
the default behavior is like this:
_ _ T _
_ = times that there is not any output.
the simplest solution that comes to my mind is left joining the input with output stream (there is not any left join on streams in flink and I should prepare it by coFlatMap) and mapping to the output (chang Nones with the value and drop the input) but I do not know if is it a good solution (performance-wise) or not.