-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Failure when using optimized Parquet writer: ArrayIndexOutOfBoundsException: Index 128901 out of bounds for length 1 #5518
Comments
Anyone looking to solve this? |
I believe that this is fixed by this PR: Which should be included in Parquet 1.13. |
@SamWheating Looks like it’s not the same problem, I still get an error after test java.lang.ArrayIndexOutOfBoundsException: Index 37404 out of bounds for length 1 |
Adding a link to the Apache Jira tracking the issue https://issues.apache.org/jira/browse/PARQUET-1852. |
Here's a quick write up of the problem for future reference: The optimized writer uses the Parquet library's FallbackValuesWriter. This writer has two ValuesWriter instances, a primary one and a fallback. The value writer interface also has two reset methods. |
The text was updated successfully, but these errors were encountered: