-
-
Notifications
You must be signed in to change notification settings - Fork 27
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
Map partitions on a series that yields a scalar per partition cannot be computed #625
Comments
Yes that's correct. The underlying issue is that we inject a
We should probably ensure that map_partitions returns a Series at least, wdyt? |
Yeah, I just found the issue. This debugging experience wasn't pleasant. Why can't repartition just use |
I do think that having integers as partitions is not ideal, this will most like cause all kinds of issues
But not averse to using _concat as well |
Yes, that makes sense. |
We have 2 options here:
I think I am leaning slightly towards just making this work |
Agreed, I'm already on it |
So far, I believe the reason for this is that the
min
is returning a scalar float (the type that is tried to be dispatched) instead of aSeries
with one element. This then fails in the concat operation when computing the series.The text was updated successfully, but these errors were encountered: