-
Notifications
You must be signed in to change notification settings - Fork 489
Upgrade Iceberg 1.7.1 #442
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
Changes from all commits
de8eed5
5d14932
ce3634c
e6a3e71
7bfa42d
b908493
3bcf63d
b4de530
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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
Contributor
Author
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
Contributor
Author
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
Contributor
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); | ||
| } | ||
|
|
||
|
|
||
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