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

Improve memory usage for anonymous variables #10

Open
stariy95 opened this issue May 10, 2024 · 0 comments
Open

Improve memory usage for anonymous variables #10

stariy95 opened this issue May 10, 2024 · 0 comments

Comments

@stariy95
Copy link
Member

While #4 fixes leaks linked to a named variable redefinition, there's still more options for improvement.
The first candidate is anonymous variables:

DataFrame
        .foldByColumn("1", "2")
        .ofStream(IntStream.range(0, Integer.MAX_VALUE / 8));

Expression above creates different snippets each time and they are not linked, like in case of a named variables, so no class unloading can happen.

@stariy95 stariy95 added this to the 1.0-M2 milestone May 10, 2024
@stariy95 stariy95 modified the milestones: 1.0-M2, 1.0-M3 Jul 1, 2024
@stariy95 stariy95 removed this from the 1.0-M3 milestone Sep 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant