-
Hi everyone, Another simple question about Stream Processing: is it possible to filter by the defined aggregation field on the SQL Query?
I want to obtain only the aggregated entries in 60 seconds with a COUNT greater than 10, but is not working. Maybe I can do it with two STREAM TASKS:
But I want to know if I can do it with only one, to get better performance. Thanks in advance four your help! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @canob, currently, our SQL syntax does not support the |
Beta Was this translation helpful? Give feedback.
Hi @canob, currently, our SQL syntax does not support the
HAVING
clause, and as you said, using two Stream Tasks is the correct way to achieve the same result.