-
Notifications
You must be signed in to change notification settings - Fork 413
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support New Type of Window #2841
Comments
Check the conditional sliding window https://ekuiper.org/docs/en/latest/sqls/windows.html#the-trigger-condition-of-the-sliding-window |
how to exactly control the start point of the window? conditional sliding window, in my understanding, only can control end with |
this is the demo in https://docs.tdengine.com/taos-sql/distinguished/#event-window
And this is the version I translated into ekuiper:
FILTER control the window started, OVER control the window closed. And (ss,60) is an additional constraint on the windows length on time. Am I right? |
What would you like to be added/modified:
It is a good idea to add a new type of windows, not base on time or count, but on the condition expr.
TDengine have this feature: https://docs.tdengine.com/taos-sql/distinguished/#state-window
continuous rows with the same status belong to a status window. Once the status changes, the status window closes
Why is this needed:
It will be very helpful in some manufacturing applicatrion.
Maybe I'm a new player, can I implement this with the existing syntax?
The text was updated successfully, but these errors were encountered: