Skip to content
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

[FEATURE] More types of windowing #171

Closed
3 tasks
judahrand opened this issue Nov 18, 2022 · 1 comment
Closed
3 tasks

[FEATURE] More types of windowing #171

judahrand opened this issue Nov 18, 2022 · 1 comment
Labels
needs triage New issue, needs triage type:feature New feature request

Comments

@judahrand
Copy link

judahrand commented Nov 18, 2022

Is your feature request related to a problem? Please describe.

Tumbling windows are only one sort of window. We need additional window types, for example:

These window types are as described here: https://learn.microsoft.com/en-us/azure/stream-analytics/stream-analytics-window-functions

Describe the solution you'd like
A clear and concise description of what you want to happen.

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
Add any other context or screenshots about the feature request here.

@github-actions github-actions bot added the needs triage New issue, needs triage label Nov 18, 2022
@awmatheson awmatheson added the type:feature New feature request label Nov 28, 2022
@Psykopear
Copy link
Contributor

Hi @judahrand , I just merged the latest windowing PR, and they will be in the next release.
There is one difference compared to your issues, as noted in the latest PR (#208): what you called HoppingWindow is called a SlidingWindow in Flink, and we decided to be consistent with Flink's naming.
Also, the SlidingWindow defined in the documentation you linked requires a window to be emitted more than once (every time a window changes), and that's not possible in bytewax currently, so we did not add it.

Something similar could still be implemented, by creating a new window every time an event is received, similarly to a session window, but with a fixed length, and emitted only once.

I'm going to close this issue, but feel free to open a new one if you want to discuss other types of windows.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
needs triage New issue, needs triage type:feature New feature request
Projects
None yet
Development

No branches or pull requests

3 participants