-
Notifications
You must be signed in to change notification settings - Fork 199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade Iceberg to 1.8 #1126
base: main
Are you sure you want to change the base?
Upgrade Iceberg to 1.8 #1126
Conversation
@@ -215,6 +215,10 @@ public void initialize(String name, Map<String, String> properties) { | |||
name, | |||
this.catalogName); | |||
|
|||
// Ensure catalogProperties is assigned before calling metricsReporter() for proper | |||
// functionality. | |||
catalogProperties = properties; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This fixes testCatalogWithCustomMetricsReporter
gradle/libs.versions.toml
Outdated
@@ -19,7 +19,7 @@ | |||
|
|||
[versions] | |||
hadoop = "3.4.1" | |||
iceberg = "1.7.1" | |||
iceberg = "1.8.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you let me know why you avoided 1.8.1? There are some regressions in 1.8.0.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just noticed 1.8.1 is available, upgraded. Thanks!
Changes
TableMetadata.addSchema
methodENDPOINTS
inIcebergCatalogAdapter
initCatalog
method inCatalogTests
PolarisRestCatalogIntegrationTest
andBasePolarisCatalogTest
due to:Assumptions.assertThat
of AssertJ, used inCatalogTests
in Iceberg, is incompatible with Quarkus, see Support Assumptions.assumeThat in Quarkus quarkusio/quarkus#46642.listNamespacesWithEmptyNamespace
. Consider whether to align this behavior.createViewWithCustomMetadataLocation
inQuarkusRestCatalogViewFileIT
andQuarkusRestCatalogViewFileIntegrationTest
by ensuring that thetempDir
remains withinBASE_LOCATION
.write.metadata.path
toAllowedLocations
inBasePolarisCatalogViewBuilder
when specified by the user, similar to Add support for customer write.data.path and write.metadata.path with test for object store location provider #193.