REASY opened a new issue, #13110: URL: https://github.com/apache/arrow/issues/13110
I'm trying to use Arrow Java (https://mvnrepository.com/artifact/org.apache.arrow/arrow-dataset/8.0.0) to read a parquet file from S3. It fails due to the native library being compiled without S3 support: ``` java.lang.RuntimeException: Got S3 URI but Arrow compiled without S3 support at org.apache.arrow.dataset.file.JniWrapper.makeFileSystemDatasetFactory(Native Method) at org.apache.arrow.dataset.file.FileSystemDatasetFactory.createNative(FileSystemDatasetFactory.java:35) at org.apache.arrow.dataset.file.FileSystemDatasetFactory.<init>(FileSystemDatasetFactory.java:31) ``` The check happens in the Arrow C++ code https://github.com/apache/arrow/blob/d00caa947ea53774e0e6745c857bf622457081ad/cpp/src/arrow/filesystem/filesystem.cc#L724 Is there a java version that is bundled with libarrow_dataset with S3 support? -- 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]
