>From Michael Blow <[email protected]>: Michael Blow has submitted this change. ( https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/21647?usp=email )
Change subject: [NO ISSUE][MISC] Advance parquet to 1.18.0 ...................................................................... [NO ISSUE][MISC] Advance parquet to 1.18.0 - parquet: 1.17.1 → 1.18.0 - zstd-jni: 1.5.7-7 → 1.5.7-11 zstd-jni is pinned against parquet and moves to the version 1.18.0 declares. The other two pinned transitives do not move: 1.18.0 asks for aircompressor 2.0.3 and commons-pool 1.6, which is what they already read. jts-core and snappy-java are likewise unchanged. 1.18.0 relocates RowRanges from org.apache.parquet.internal.filter2 .columnindex to org.apache.parquet.filter2.columnindex, leaving the internal class as an empty subclass of it, and so changes the return type of ColumnIndexFilter.calculateRowRanges. It also replaces the protected LittleEndianDataInputStream field on PlainValuesReader with a ByteBuffer and drops the shaded fastutil double and float collections from parquet-column. Nothing outside parquet itself reaches for any of them. AwsS3ExternalDatasetTest passes in full, 71 cases, 22 of them parquet. Change-Id: I1e62e7b61b9205680e32fd150323cacc0d5b6cde Ext-ref: MB-73268 Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/21647 Tested-by: Jenkins <[email protected]> Reviewed-by: Michael Blow <[email protected]> Integration-Tests: Jenkins <[email protected]> --- M asterixdb/pom.xml 1 file changed, 2 insertions(+), 2 deletions(-) Approvals: Jenkins: Verified; Verified Michael Blow: Looks good to me, approved diff --git a/asterixdb/pom.xml b/asterixdb/pom.xml index 52c32b2..b3cdff6 100644 --- a/asterixdb/pom.xml +++ b/asterixdb/pom.xml @@ -95,7 +95,7 @@ <log4j.version>2.25.5</log4j.version> <awsjavasdk.version>2.54.7</awsjavasdk.version> <s3mock.version>5.2.0</s3mock.version> - <parquet.version>1.17.1</parquet.version> <!-- NOTICE: please update transitives from parquet below on any change --> + <parquet.version>1.18.0</parquet.version> <!-- NOTICE: please update transitives from parquet below on any change --> <hadoop-awsjavasdk.version>1.12.797</hadoop-awsjavasdk.version> <azureblobjavasdk.version>12.35.1</azureblobjavasdk.version> @@ -1780,7 +1780,7 @@ <dependency> <groupId>com.github.luben</groupId> <artifactId>zstd-jni</artifactId> - <version>1.5.7-7</version> + <version>1.5.7-11</version> </dependency> <!-- @pinned-with: ${parquet.version} --> <dependency> -- To view, visit https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/21647?usp=email To unsubscribe, or for help writing mail filters, visit https://asterix-gerrit.ics.uci.edu/settings?usp=email Gerrit-MessageType: merged Gerrit-Project: asterixdb Gerrit-Branch: trinity Gerrit-Change-Id: I1e62e7b61b9205680e32fd150323cacc0d5b6cde Gerrit-Change-Number: 21647 Gerrit-PatchSet: 2 Gerrit-Owner: Michael Blow <[email protected]> Gerrit-Reviewer: Jenkins <[email protected]> Gerrit-Reviewer: Michael Blow <[email protected]> Gerrit-CC: Anon. E. Moose #1000171
