zhjwpku commented on code in PR #516: URL: https://github.com/apache/iceberg-cpp/pull/516#discussion_r2705406402
########## src/iceberg/update/fast_append.cc: ########## @@ -0,0 +1,248 @@ +/* + * 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/update/fast_append.h" + +#include <format> +#include <iterator> +#include <ranges> +#include <vector> + +#include "iceberg/constants.h" +#include "iceberg/manifest/manifest_entry.h" +#include "iceberg/manifest/manifest_reader.h" +#include "iceberg/manifest/manifest_writer.h" +#include "iceberg/snapshot.h" +#include "iceberg/table.h" +#include "iceberg/table_metadata.h" +#include "iceberg/table_properties.h" +#include "iceberg/transaction.h" +#include "iceberg/util/error_collector.h" +#include "iceberg/util/macros.h" + +namespace iceberg { + +Result<std::unique_ptr<FastAppend>> FastAppend::Make( + std::string table_name, std::shared_ptr<Transaction> transaction) { + return std::unique_ptr<FastAppend>( + new FastAppend(std::move(table_name), std::move(transaction))); +} + +FastAppend::FastAppend(std::string table_name, std::shared_ptr<Transaction> transaction) + : SnapshotUpdate(std::move(transaction)), table_name_(std::move(table_name)) {} + +FastAppend& FastAppend::AppendFile(std::shared_ptr<DataFile> file) { + ICEBERG_BUILDER_CHECK(file != nullptr, "Invalid data file: null"); + ICEBERG_BUILDER_CHECK(file->partition_spec_id.has_value(), + "Data file must have partition spec ID"); + + int32_t spec_id = file->partition_spec_id.value(); + ICEBERG_BUILDER_ASSIGN_OR_RETURN(auto spec, Spec(spec_id)); + + auto& data_files = new_data_files_by_spec_[spec_id]; + auto [iter, inserted] = data_files.insert(file); + if (inserted) { + has_new_files_ = true; + ICEBERG_BUILDER_RETURN_IF_ERROR(summary_.AddedFile(*spec, *file)); + } + + return *this; +} + +FastAppend& FastAppend::AppendManifest(const ManifestFile& manifest) { + ICEBERG_BUILDER_CHECK(!manifest.has_existing_files(), + "Cannot append manifest with existing files"); + ICEBERG_BUILDER_CHECK(!manifest.has_deleted_files(), + "Cannot append manifest with deleted files"); + ICEBERG_BUILDER_CHECK(manifest.added_snapshot_id == kInvalidSnapshotId, + "Snapshot id must be assigned during commit"); + ICEBERG_BUILDER_CHECK(manifest.sequence_number == TableMetadata::kInvalidSequenceNumber, + "Sequence number must be assigned during commit"); + + if (can_inherit_snapshot_id() && (manifest.added_snapshot_id == kInvalidSnapshotId)) { + summary_.AddedManifest(manifest); + append_manifests_.push_back(manifest); + } else { + // The manifest must be rewritten with this update's snapshot ID + ICEBERG_BUILDER_ASSIGN_OR_RETURN(auto copied_manifest, CopyManifest(manifest)); + rewritten_append_manifests_.push_back(copied_manifest); + } + + return *this; +} + +FastAppend& FastAppend::ToBranch(const std::string& branch) { + ICEBERG_BUILDER_RETURN_IF_ERROR(SetTargetBranch(branch)); + return *this; +} + +FastAppend& FastAppend::Set(const std::string& property, const std::string& value) { + summary_.Set(property, value); + return *this; +} + +std::string FastAppend::operation() { return DataOperation::kAppend; } + +Result<std::vector<ManifestFile>> FastAppend::Apply( + const TableMetadata& metadata_to_update, const std::shared_ptr<Snapshot>& snapshot) { + std::vector<ManifestFile> manifests; + + ICEBERG_ASSIGN_OR_RAISE(auto new_written_manifests, WriteNewManifests()); + if (!new_written_manifests.empty()) { + manifests.insert(manifests.end(), new_written_manifests.begin(), + new_written_manifests.end()); + } + + // Transform append manifests and rewritten append manifests with snapshot ID + int64_t snapshot_id = SnapshotId(); + for (const auto& manifest : append_manifests_) { + ManifestFile updated = manifest; + updated.added_snapshot_id = snapshot_id; + manifests.push_back(updated); + } + + for (const auto& manifest : rewritten_append_manifests_) { + ManifestFile updated = manifest; + updated.added_snapshot_id = snapshot_id; + manifests.push_back(updated); + } + + // Add all manifests from the snapshot + if (snapshot != nullptr) { + // Use SnapshotCache to get manifests, similar to snapshot_update.cc + auto cached_snapshot = SnapshotCache(snapshot.get()); + ICEBERG_ASSIGN_OR_RAISE(auto snapshot_manifests_span, + cached_snapshot.Manifests(transaction_->table()->io())); + std::vector<ManifestFile> snapshot_manifests(snapshot_manifests_span.begin(), + snapshot_manifests_span.end()); + manifests.insert(manifests.end(), snapshot_manifests.begin(), + snapshot_manifests.end()); + } + + return manifests; +} + +std::unordered_map<std::string, std::string> FastAppend::Summary() { + summary_.SetPartitionSummaryLimit( + base().properties.Get(TableProperties::kWritePartitionSummaryLimit)); + return summary_.Build(); +} + +void FastAppend::CleanUncommitted(const std::unordered_set<std::string>& committed) { + // Clean up new manifests that were written but not committed + if (!new_manifests_.empty()) { + for (const auto& manifest : new_manifests_) { + if (committed.find(manifest.manifest_path) == committed.end()) { + std::ignore = DeleteFile(manifest.manifest_path); + } + } + new_manifests_.clear(); + } + + // Clean up only rewritten_append_manifests as they are always owned by the table + // Don't clean up append_manifests as they are added to the manifest list and are + // not compacted + if (!rewritten_append_manifests_.empty()) { + for (const auto& manifest : rewritten_append_manifests_) { + if (committed.find(manifest.manifest_path) == committed.end()) { + std::ignore = DeleteFile(manifest.manifest_path); + } + } + } +} + +bool FastAppend::CleanupAfterCommit() const { + // Cleanup after committing is disabled for FastAppend unless there are + // rewritten_append_manifests because: + // 1.) Appended manifests are never rewritten + // 2.) Manifests which are written out as part of appendFile are already cleaned + // up between commit attempts in writeNewManifests + return !rewritten_append_manifests_.empty(); +} + +Result<std::shared_ptr<PartitionSpec>> FastAppend::Spec(int32_t spec_id) { + return base().PartitionSpecById(spec_id); +} + +Result<ManifestFile> FastAppend::CopyManifest(const ManifestFile& manifest) { + const TableMetadata& current = base(); + ICEBERG_ASSIGN_OR_RAISE(auto schema, current.Schema()); + ICEBERG_ASSIGN_OR_RAISE(auto spec, + current.PartitionSpecById(manifest.partition_spec_id)); + + // Read the manifest entries + ICEBERG_ASSIGN_OR_RAISE( + auto reader, + ManifestReader::Make(manifest, transaction_->table()->io(), schema, spec)); + ICEBERG_ASSIGN_OR_RAISE(auto entries, reader->Entries()); + + // Create a new manifest writer + // Generate a unique manifest path using the transaction's metadata location + std::string filename = std::format("copy-m{}.avro", copy_manifest_count_++); + std::string new_manifest_path = transaction_->MetadataFileLocation(filename); + int64_t snapshot_id = SnapshotId(); + ICEBERG_ASSIGN_OR_RAISE( + auto writer, ManifestWriter::MakeWriter( + current.format_version, snapshot_id, new_manifest_path, + transaction_->table()->io(), spec, schema, ManifestContent::kData, + /*first_row_id=*/current.next_row_id)); + + // Write all entries as added entries with the new snapshot ID + for (auto& entry : entries) { + ICEBERG_PRECHECK(entry.status == ManifestStatus::kAdded, + "Manifest to copy must only contain added entries"); + entry.snapshot_id = snapshot_id; + ICEBERG_RETURN_UNEXPECTED(writer->WriteAddedEntry(entry)); + } + + ICEBERG_RETURN_UNEXPECTED(writer->Close()); + ICEBERG_ASSIGN_OR_RAISE(auto new_manifest, writer->ToManifestFile()); + + summary_.AddedManifest(new_manifest); + + return new_manifest; +} + +Result<std::vector<ManifestFile>> FastAppend::WriteNewManifests() { + // If there are new files and manifests were already written, clean them up + if (has_new_files_ && !new_manifests_.empty()) { + for (const auto& manifest : new_manifests_) { + ICEBERG_RETURN_UNEXPECTED(DeleteFile(manifest.manifest_path)); + } + new_manifests_.clear(); + } + + // Write new manifests if there are new data files + if (new_manifests_.empty() && !new_data_files_by_spec_.empty()) { + for (const auto& [spec_id, data_files] : new_data_files_by_spec_) { + ICEBERG_ASSIGN_OR_RAISE(auto spec, Spec(spec_id)); + std::vector<std::shared_ptr<DataFile>> files; + files.reserve(data_files.size()); + std::ranges::copy(data_files, std::back_inserter(files)); + ICEBERG_ASSIGN_OR_RAISE(auto written_manifests, WriteDataManifests(files, spec)); Review Comment: TODO added, will change this in a separate PR. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
