feat: Databricks Unity Catalog Materialization#6565
Draft
falloficaruss wants to merge 9 commits into
Draft
Conversation
Signed-off-by: Abhishek Shinde <norizzabhii@gmail.com>
…tion methods Signed-off-by: Abhishek Shinde <norizzabhii@gmail.com>
Signed-off-by: Abhishek Shinde <norizzabhii@gmail.com>
…apply Signed-off-by: Abhishek Shinde <norizzabhii@gmail.com>
…, fix operator precedence - Rename UCRegistrationConfig.schema to uc_schema to avoid shadowing FeastConfigBaseModel.schema() class method - Add explicit parentheses for operator precedence clarity in _feast_to_spark_type_simple - Add missing BYTES and UNIX_TIMESTAMP type mappings - Fix _resolve_uc_path return type hint (Optional[str] for catalog/schema) - Add 36 unit tests covering all helper functions and register_uc_feature_tables with mocked external deps Signed-off-by: Feast Dev <dev@feast.dev> Signed-off-by: Abhishek Shinde <norizzabhii@gmail.com>
Signed-off-by: Abhishek Shinde <norizzabhii@gmail.com>
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.
What this PR does / why we need it:
The L3 PR adds UC-backed materialization — the ability to write materialized features back to Unity Catalog Delta tables during feast materialize.
When feast materialize runs, the compute engine nodes (LocalOutputNode in local/nodes.py, SparkWriteNode in spark/nodes.py) now call a new write_uc_materialized_data() hook after writing to the online/offline stores. This hook:
Which issue(s) this PR fixes:
Fixes #6499
Checks
git commit -s)Testing Strategy
Misc