-
Notifications
You must be signed in to change notification settings - Fork 133
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 1.7.0 #442
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
|
||
[versions] | ||
hadoop = "3.4.0" | ||
iceberg = "1.6.1" | ||
iceberg = "1.8.0-SNAPSHOT" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. change to 1.7.1 when released please ref this discussion thread #442 (comment) |
||
dropwizard = "4.0.8" | ||
slf4j = "2.0.13" | ||
swagger = "1.6.14" | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,7 +47,6 @@ | |
import org.apache.iceberg.TableMetadata; | ||
import org.apache.iceberg.TableMetadataParser; | ||
import org.apache.iceberg.TableOperations; | ||
import org.apache.iceberg.aws.s3.S3FileIOProperties; | ||
import org.apache.iceberg.catalog.Namespace; | ||
import org.apache.iceberg.catalog.SupportsNamespaces; | ||
import org.apache.iceberg.catalog.TableIdentifier; | ||
|
@@ -99,7 +98,6 @@ | |
import org.apache.polaris.core.storage.PolarisStorageConfigurationInfo; | ||
import org.apache.polaris.core.storage.PolarisStorageIntegration; | ||
import org.apache.polaris.core.storage.StorageLocation; | ||
import org.apache.polaris.core.storage.aws.PolarisS3FileIOClientFactory; | ||
import org.apache.polaris.service.catalog.io.FileIOFactory; | ||
import org.apache.polaris.service.exception.IcebergExceptionMapper; | ||
import org.apache.polaris.service.task.TaskExecutor; | ||
|
@@ -2055,8 +2053,6 @@ private List<TableIdentifier> listTableLike(PolarisEntitySubType subType, Namesp | |
*/ | ||
private FileIO loadFileIO(String ioImpl, Map<String, String> properties) { | ||
Map<String, String> propertiesWithS3CustomizedClientFactory = new HashMap<>(properties); | ||
propertiesWithS3CustomizedClientFactory.put( | ||
S3FileIOProperties.CLIENT_FACTORY, PolarisS3FileIOClientFactory.class.getName()); | ||
Comment on lines
-2058
to
-2059
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No longer required because of this : https://github.com/apache/iceberg/pull/11259/files There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Might have to mark this deprecated first since it's a public class There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it was only ever used for this purpose, so we're probably fine |
||
return fileIOFactory.loadFileIO(ioImpl, propertiesWithS3CustomizedClientFactory); | ||
} | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,6 +69,7 @@ dependencyResolutionManagement { | |
repositories { | ||
mavenCentral() | ||
gradlePluginPortal() | ||
maven(url = "https://repository.apache.org/content/repositories/snapshots") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. remove this when 1.7.1 is release please ref this thread : #442 (comment) |
||
} | ||
} | ||
|
||
|
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.
Question: Is it a new transitive dependency brought by iceberg 1.7?
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.
yup, it's added as part of AWS S3InputStream retry handling via : https://github.com/apache/iceberg/pull/10433/files