Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@
<encoding>UTF-8</encoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<parquet.version>1.11.1</parquet.version>

Copilot AI Oct 24, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add a comment above this property explaining what issue the '-avro-fix' suffix addresses and where this custom artifact is maintained. This will help future maintainers understand why a non-standard version is being used.

Suggested change
<parquet.version>1.11.1</parquet.version>
<parquet.version>1.11.1</parquet.version>
<!--
The '-avro-fix' suffix indicates a custom build of Parquet 1.11.1 that includes a fix for Avro compatibility issues
encountered with the standard release. This custom artifact is maintained in the Pinterest fork at
https://github.com/pinterest/parquet-avro-fix and published to our internal Maven repository.
Please refer to the repository for details on the applied patch and maintenance.
-->

Copilot uses AI. Check for mistakes.
<parquet.fix.version>1.11.1-avro-fix</parquet.fix.version>


<!-- Whether we will using legazy old consumer kafka-legacy or new consumer kafka-2.0.0 -->
<!-- Name of the directory below src/main/config that contains kafka-version-specific settings -->
Expand Down Expand Up @@ -127,7 +129,7 @@
<dependency>
<groupId>org.apache.parquet</groupId>
<artifactId>parquet-avro</artifactId>
<version>${parquet.version}</version>
<version>${parquet.fix.version}</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
Expand Down