-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate non delta dbfs tables using Create Table As Select (CTAS). Co…
…nvert such tables to Delta tables. (#1434) Migrate Non-Delta DBFS root tables to Managed Delta tables. closes #1340 This release enhances migration for non-delta DBFS tables, supporting more table types and configurations. New methods improve CTAS functionality with safer SQL statement generation. Additional table format compatibility, new creation methods, and updated integration tests are included. Grant assignments during migration are now supported.
- Loading branch information
Showing
6 changed files
with
135 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"src": { | ||
"catalog": "hive_metastore", | ||
"database": "db1_src", | ||
"name": "managed_dbfs", | ||
"object_type": "MANAGED", | ||
"table_format": "PARQUET", | ||
"location": "dbfs:/some_location" | ||
}, | ||
"rule": { | ||
"workspace_name": "workspace", | ||
"catalog_name": "ucx_default", | ||
"src_schema": "db1_src", | ||
"dst_schema": "db1_dst", | ||
"src_table": "managed_dbfs", | ||
"dst_table": "managed_dbfs" | ||
} | ||
} |
This file contains 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