Skip to content

Commit cbabb84

Browse files
shollymanlesv
authored andcommitted
fix: bigquery/bigquerystorage needs a java property set
The arrow (de)serialization library requires a netty java property to be set per guidance in https://github.com/apache/arrow/tree/master/java#java-properties Fixes: GoogleCloudPlatform#2162
1 parent 2d2ec57 commit cbabb84

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

bigquery/bigquerystorage/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@
3333
<maven.compiler.target>1.8</maven.compiler.target>
3434
<maven.compiler.source>1.8</maven.compiler.source>
3535
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36+
<!-- the arrow-vector library currently necessitates setting the netty property --!>
37+
<!-- For more info: https://github.com/apache/arrow/tree/master/java#java-properties --!>
38+
<argLine>-Dio.netty.tryReflectionSetAccessible=true</argLine>
3639
</properties>
3740
3841
<dependencies>

0 commit comments

Comments
 (0)