-
Notifications
You must be signed in to change notification settings - Fork 62
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
Error joining to distributed NDSparse #308
Comments
Two issues:
The example above works for |
@zgornel Thank you! I can't believe I didn't notice I was doing the wrong kind of join. I do get the correct result with an outer join, with one caveat: No matter how many tables I join to the original distributed table, the number of chunks remains the same. I guess I'm not sure what the default behavior should be, so this behavior makes sense, even though I didn't expect it. However, I'm not sure how to join to a distributed table and increase the number of chunks, which is important in my use-case because each joined table individually approaches the memory limit of my machine. Does anyone know how to do this? Does it warrant its own issue? At the very least, I would expect documentation on this and I'm happy to provide that if I understand how to do it. I'll leave this issue open because of the remaining problem that |
gives
I tried the naive solution of adding a
Base.convert(::Type{T}, x::Nullable{T}) where T = x.value
but then the join returns an empty table.The text was updated successfully, but these errors were encountered: