-
Notifications
You must be signed in to change notification settings - Fork 63
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
writeArrowFeather not working with nested type ? #271
Comments
No, you're right - nested typed are not yet supported. :( Interesting data you've got there |
Thanks for share it. Any plan on it? or I just try to modifiy |
Honestly, i overlooked that our Arrow support misses nested types, so this improvement isn't planned. Right now the team is occupied with improvements to the documentation and notebooks experience. I think nobody is going to work on Arrow in near weeks. |
Thank you, I will try to find a solution. |
About nested types, @phodal, do you have any examples in other Java-based projects with Arrow support as an example? And what is your target Arrow schema (does it contain SructVector, ListVector or any other)? |
@Kopilov Sorry, I try to do it, but it need lots of code. So, I don't use dataframe with Arrow, just keep to use JSON. |
Exception is fixed in #350 |
Hi, in my case, I want to create a arrow file in client side, then pass to server side. But when I just try run
writeArrowFeather
, will show theIndexOutOfBoundsException
issues.Here is my demo code with writer and some debug information:
When i try to debug, in the
dataFrame.schema().print()
, it will return correct schema:But, in
dataFrame.columns().toArrowSchema()
the type will be error:I lost something?
The text was updated successfully, but these errors were encountered: