We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1731eab commit 7152a9eCopy full SHA for 7152a9e
graalpy/graalpy-apache-arrow-guide/README.md
@@ -302,6 +302,11 @@ To run the application using Maven, first define `exec` plugin:
302
</configuration>
303
</plugin>
304
```
305
+Before running the application we need to open the internal java.nio package to Apache Arrow. To do this we need to export one environment variable:
306
+```bash
307
+export MAVEN_OPTS="--add-opens=java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED"
308
+```
309
+
310
Run the application using:
311
```bash
312
./mvnw exec:java -Dexec.mainClass="com.example.Main"
0 commit comments