Skip to content

Commit 4015c41

Browse files
kellenclaude
andcommitted
Disable parquet vectored reads to fix gcs-connector incompatibility
gcs-connector 3.1.16 calls VectoredReadUtils.validateRangeRequest expecting a void return, but hadoop-common 3.4.3 changed the return type to FileRange, causing NoSuchMethodError when parquet-hadoop attempts vectored reads through GoogleHadoopFileSystem. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent b6aad90 commit 4015c41

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

scio-parquet/src/main/resources/core-site.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,8 @@
3030
<name>parquet.avro.compatible</name>
3131
<value>false</value>
3232
</property>
33+
<property>
34+
<name>parquet.hadoop.vectored.io.enabled</name>
35+
<value>false</value>
36+
</property>
3337
</configuration>

0 commit comments

Comments
 (0)