-
Notifications
You must be signed in to change notification settings - Fork 117
feat(io): add ResolvingFileIO to resolve FileIO by location scheme and forward vended credentials #828
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
base: main
Are you sure you want to change the base?
feat(io): add ResolvingFileIO to resolve FileIO by location scheme and forward vended credentials #828
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 |
|---|---|---|
| @@ -0,0 +1,126 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one | ||
| * or more contributor license agreements. See the NOTICE file | ||
| * distributed with this work for additional information | ||
| * regarding copyright ownership. The ASF licenses this file | ||
| * to you under the Apache License, Version 2.0 (the | ||
| * "License"); you may not use this file except in compliance | ||
| * with the License. You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, | ||
| * software distributed under the License is distributed on an | ||
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| * KIND, either express or implied. See the License for the | ||
| * specific language governing permissions and limitations | ||
| * under the License. | ||
| */ | ||
|
|
||
| #include "iceberg/resolving_file_io.h" | ||
|
|
||
| #include <utility> | ||
|
|
||
| #include "iceberg/file_io_registry.h" | ||
| #include "iceberg/util/macros.h" | ||
|
|
||
| namespace iceberg { | ||
|
|
||
| ResolvingFileIO::ResolvingFileIO(std::unordered_map<std::string, std::string> properties) | ||
| : properties_(std::move(properties)) {} | ||
|
|
||
| ResolvingFileIO::~ResolvingFileIO() = default; | ||
|
|
||
| Result<std::string_view> ResolvingFileIO::ResolveFileIOName(std::string_view location) { | ||
| const auto pos = location.find("://"); | ||
| if (pos == std::string_view::npos) { | ||
| return FileIORegistry::kArrowLocalFileIO; | ||
| } | ||
|
|
||
| const auto scheme = location.substr(0, pos); | ||
| if (scheme == "file") { | ||
| return FileIORegistry::kArrowLocalFileIO; | ||
| } | ||
| // S3-compatible schemes served by the S3 FileIO (Java: SCHEME_TO_FILE_IO). | ||
| // Keep in sync with CanonicalizeS3Scheme in arrow_s3_file_io.cc. | ||
| if (scheme == "s3" || scheme == "s3a" || scheme == "s3n" || scheme == "oss") { | ||
| return FileIORegistry::kArrowS3FileIO; | ||
| } | ||
|
|
||
| return NotSupported("URI scheme '{}' is not supported for FileIO resolution", scheme); | ||
| } | ||
|
|
||
| Result<FileIO*> ResolvingFileIO::FileIOForPath(std::string_view location) { | ||
| ICEBERG_ASSIGN_OR_RAISE(const auto name, ResolveFileIOName(location)); | ||
|
|
||
| std::lock_guard lock(mutex_); | ||
| auto it = io_by_name_.find(name); | ||
| if (it == io_by_name_.end()) { | ||
| ICEBERG_ASSIGN_OR_RAISE(auto io, | ||
| FileIORegistry::Load(std::string(name), properties_)); | ||
| // Forward all credentials; each implementation applies the prefixes it | ||
| // understands. | ||
| if (!storage_credentials_.empty()) { | ||
| if (auto* credentialed = io->AsSupportsStorageCredentials()) { | ||
| ICEBERG_RETURN_UNEXPECTED( | ||
| credentialed->SetStorageCredentials(storage_credentials_)); | ||
| } | ||
| } | ||
| it = io_by_name_.emplace(std::string(name), std::move(io)).first; | ||
| } | ||
| return it->second.get(); | ||
| } | ||
|
|
||
| Result<std::unique_ptr<InputFile>> ResolvingFileIO::NewInputFile( | ||
| std::string file_location) { | ||
| ICEBERG_ASSIGN_OR_RAISE(auto* io, FileIOForPath(file_location)); | ||
| return io->NewInputFile(std::move(file_location)); | ||
| } | ||
|
|
||
| Result<std::unique_ptr<InputFile>> ResolvingFileIO::NewInputFile( | ||
| std::string file_location, size_t length) { | ||
| ICEBERG_ASSIGN_OR_RAISE(auto* io, FileIOForPath(file_location)); | ||
| return io->NewInputFile(std::move(file_location), length); | ||
| } | ||
|
|
||
| Result<std::unique_ptr<OutputFile>> ResolvingFileIO::NewOutputFile( | ||
| std::string file_location) { | ||
| ICEBERG_ASSIGN_OR_RAISE(auto* io, FileIOForPath(file_location)); | ||
| return io->NewOutputFile(std::move(file_location)); | ||
| } | ||
|
|
||
| Status ResolvingFileIO::DeleteFile(const std::string& file_location) { | ||
| ICEBERG_ASSIGN_OR_RAISE(auto* io, FileIOForPath(file_location)); | ||
| return io->DeleteFile(file_location); | ||
| } | ||
|
|
||
| Status ResolvingFileIO::DeleteFiles(const std::vector<std::string>& file_locations) { | ||
| std::unordered_map<FileIO*, std::vector<std::string>> locations_by_io; | ||
| for (const auto& file_location : file_locations) { | ||
| ICEBERG_ASSIGN_OR_RAISE(auto* io, FileIOForPath(file_location)); | ||
| locations_by_io[io].push_back(file_location); | ||
| } | ||
| for (auto& [io, locations] : locations_by_io) { | ||
| ICEBERG_RETURN_UNEXPECTED(io->DeleteFiles(locations)); | ||
| } | ||
| return {}; | ||
| } | ||
|
|
||
| Status ResolvingFileIO::SetStorageCredentials( | ||
| const std::vector<StorageCredential>& storage_credentials) { | ||
| std::lock_guard lock(mutex_); | ||
| storage_credentials_ = storage_credentials; | ||
|
Member
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. Please do not update |
||
| for (auto& [name, io] : io_by_name_) { | ||
| if (auto* credentialed = io->AsSupportsStorageCredentials()) { | ||
| ICEBERG_RETURN_UNEXPECTED( | ||
| credentialed->SetStorageCredentials(storage_credentials_)); | ||
| } | ||
| } | ||
| return {}; | ||
| } | ||
|
|
||
| const std::vector<StorageCredential>& ResolvingFileIO::credentials() const { | ||
| return storage_credentials_; | ||
| } | ||
|
|
||
| } // namespace iceberg | ||
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.
Please either remove
ossfrom this mapping or makeArrowS3FileIOaccept and canonicalizeoss://credentials. REST credentials are scoped by storage-location prefix, but the S3 delegate currently dropsoss://credentials and falls back to its defaults. A catalog that vends onlyoss://bucket/tablecredentials will therefore fail at I/O time. Java avoids this mismatch by not mappingosstoS3FileIO.