amoeba commented on issue #80: URL: https://github.com/apache/arrow-java/issues/80#issuecomment-3638183909
Thanks for the interest here. I'm not familiar with that APIs but I notice that our documentation shows processing the batches with `VectorUnloader`. Can someone who can reproduce this issue check that this isn't the problem? From https://arrow.apache.org/java/current/dataset.html: ```java List<ArrowRecordBatch> batches = new ArrayList<>(); while (reader.loadNextBatch()) { try (VectorSchemaRoot root = reader.getVectorSchemaRoot()) { final VectorUnloader unloader = new VectorUnloader(root); batches.add(unloader.getRecordBatch()); } } // do something with read record batches, for example: analyzeArrowData(batches); ``` Otherwise, would someone who can reproduce this be willing to create a PR with a failing test? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
