-
Notifications
You must be signed in to change notification settings - Fork 121
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
feat: Dask multiple partitions #940
Conversation
@@ -79,7 +79,9 @@ def filter( | |||
and isinstance(predicates[0], list) | |||
and all(isinstance(x, bool) for x in predicates[0]) | |||
): | |||
msg = "Filtering with boolean mask is not supported for `DaskLazyFrame`" | |||
msg = ( | |||
"`LazyFrame.filter` is not supported for Dask backend with boolean masks." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aligns error message with others. User should not really know about DaskLazyFrame
CI Failure is due to a |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks @FBruzzesi ! test suite time stays about 2 minutes so it's probably ok to test both npartitions=1 and npartitions=2
What type of PR is this? (check all applicable)
Related issues
npartitions=2
Β #872Checklist
If you have comments or can explain your changes, please do so below.