Merged
Conversation
✅ Deploy Preview for flowfile-wasm canceled.
|
…oud/Flowfile into feature/catatalog-to-delta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request implements a major migration of the catalog storage backend from plain Parquet files to Delta Lake tables, providing support for ACID transactions, time travel, schema evolution, and incremental updates. It introduces new utility modules, a migration script for existing data, and updates to the catalog service to support both legacy and new storage formats. The changes are grouped below by theme.
Delta Lake Integration and Migration:
feature-md-catalog-to-delta.md) outlining the motivation, migration plan, API changes, and open questions for moving catalog storage from Parquet files to Delta Lake tables.migrate_parquet_to_delta.py) to convert existing Parquet catalog tables to Delta format, including dry-run support and database updates.delta_utils.py, a utility module to centralize format detection, size calculation, preview reading, and deletion logic for both Delta and legacy Parquet tables.Catalog Service Enhancements:
service.py) to:These changes lay the groundwork for robust, versioned, and transactional catalog storage, while ensuring backward compatibility and a clear migration path.
References: [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12]