- Introduction
- Environment Setup
- How to use Transpile
- How to use Reconcile
- Benchmarks
- Frequently Asked Questions
- Common Error Codes
- Project Support
Remorph stands as a comprehensive toolkit meticulously crafted to facilitate seamless migrations to Databricks. This suite of tools is dedicated to simplifying and optimizing the entire migration process, offering two distinctive functionalities – Transpile and Reconcile. Whether you are navigating code translation or resolving potential conflicts, Remorph ensures a smooth journey for any migration project. With Remorph as your trusted ally, the migration experience becomes not only efficient but also well-managed, setting the stage for a successful transition to the Databricks platform.
Transpile is a self-contained SQL parser, transpiler, and validator designed to interpret a diverse range of SQL inputs and generate syntactically and semantically correct SQL in the Databricks SQL dialect. This tool serves as an automated solution, named Transpile, specifically crafted for migrating and translating SQL scripts from various sources to the Databricks SQL format. Currently, it exclusively supports Snowflake as a source platform, leveraging the open-source SQLglot.
Transpile stands out as a comprehensive and versatile SQL transpiler, boasting a robust test suite to ensure reliability. Developed entirely in Python, it not only demonstrates high performance but also highlights syntax errors and provides warnings or raises alerts for dialect incompatibilities based on configurations.
flowchart TD
A(Transpile CLI) --> |Directory| B[Transpile All Files In Directory];
A --> |File| C[Transpile Single File] ;
B --> D[List Files];
C --> E("Sqlglot(transpile)");
D --> E
E --> |Parse Error| F(Failed Queries)
E --> G{Skip Validations}
G --> |Yes| H(Save Output)
G --> |No| I{Validate}
I --> |Success| H
I --> |Fail| J(Flag, Capture)
J --> H
Reconcile is an automated tool designed to streamline the reconciliation process between source data and target data residing on Databricks. Currently, the platform exclusively offers support for Snowflake, Oracle and other Databricks tables as the primary data source. This tool empowers users to efficiently identify discrepancies and variations in data when comparing the source with the Databricks target.
-
Databricks CLI
- Ensure that you have the Databricks Command-Line Interface (CLI) installed on your machine. Refer to the installation instructions provided for Linux, MacOS, and Windows, available here. -
Databricks Connect
- Set up the Databricks workspace configuration file by following the instructions provided here. Note that Databricks labs use 'DEFAULT' as the default profile for establishing connections to Databricks. -
Python
- Verify that your machine has Python version 3.10 or later installed to meet the required dependencies for seamless operation.
Upon completing the environment setup, install Remorph by executing the following command:
databricks labs install remorph
Verify the successful installation by executing the provided command; confirmation of a successful installation is indicated when the displayed output aligns with the example screenshot provided:
databricks labs remorph transpile --help
- Transpile necessitates input in the form of either a directory containing SQL files or a single SQL file.
- The SQL file should encompass scripts intended for migration to Databricks SQL.
Below is the detailed explanation on the arguments required for Transpile.
input-sql [Required]
- The path to the SQL file or directory containing SQL files to be transpiled.source [Required]
- The source platform of the SQL scripts. Currently, only Snowflake is supported.output-folder [Optional]
- The path to the output folder where the transpiled SQL files will be stored. If not specified, the transpiled SQL files will be stored in the same directory as the input SQL file.skip-validation [Optional]
- The default value is True. If set to False, the transpiler will validate the transpiled SQL scripts against the Databricks catalog and schema provided by user.catalog-name [Optional]
- The name of the catalog in Databricks. If not specified, the default catalogtranspiler_test
will be used.schema-name [Optional]
- The name of the schema in Databricks. If not specified, the default schemaconvertor_test
will be used.
Execute the below command to intialize the transpile process.
databricks labs remorph transpile --input-sql <absolute-path> --source <snowflake> --output-folder <absolute-path> --skip-validation <True|False> --catalog-name <catalog name> --schema-name <schema name>
Install Reconciliation with databricks labs cli.
databricks labs install remorph
Verify the successful installation by executing the provided command; confirmation of a successful installation is indicated when the displayed output aligns with the example screenshot provided:
databricks labs remorph reconcile --help
Once the installation is done, a folder named .remorph will be created in the user workspace's home folder. To process the reconciliation for specific table sources, we must create a config file that gives the detailed required configurations for the table-specific ones. The file name should be in the format as below and created inside the .remorph folder.
recon_config_<SOURCE>_<CATALOG_OR_SCHEMA>_<REPORT_TYPE>.json
Note: For CATALOG_OR_SCHEMA , if CATALOG exists then CATALOG else SCHEMA
eg:
source_type | catalog_or_schema | report_type | file_name |
---|---|---|---|
databricks | tpch | all | recon_config_databricks_tpch_all.json |
source1 | tpch | row | recon_config_source1_tpch_row.json |
source2 | tpch | schema | recon_config_source2_tpch_schema.json |
Refer to Reconcile Configuration Guide for detailed instructions and example configurations
Execute the below command to initialize the reconcile process.
databricks labs remorph reconcile
TBD
Table name | No of rows | Data Size | Set |
---|---|---|---|
supplier | 10M | 754.7 MiB | Set 1 |
customer | 150M | 11.5 GiB | Set 1 |
part | 200M | 5.8 GiB | Set 1 |
partsupp | 800M | 39.9 GiB | Set 1 |
orders | 1.5B | 62.4 GiB | Set 1 |
lineitem | 6B | 217.6 GiB | Set 2 |
The following benchmarks were conducted on various Databricks clusters. Please note that the reconciliation times listed below do not include cluster startup time.
Cluster1 -- 14.3 LTS (includes Apache Spark 3.5.0, Scala 2.12)
Photon Enabled
VM | Quantity | Total Cores | Total RAM | |
Driver: | **i3.xlarge** | **1** | **4 cores** | **30.5 GB** |
Workers: | **i3.xlarge** | **10** | **40 cores** | **305 GB** |
Cluster2 -- 14.3 LTS (includes Apache Spark 3.5.0, Scala 2.12)
Photon Enabled
VM | Quantity | Total Cores | Total RAM | |
Driver: | **i3.2xlarge** | **1** | **8 cores** | **61 GB** |
Workers: | **i3.2xlarge** | **10** | **80 cores** | **610 GB** |
Benchmark
Type | Data | Cluster1 | Cluster2 |
---|---|---|---|
With Threshold | tpch (set 1 and set 2) | 1.46 hours | 50.12 minutes |
Without Threshold | tpch (set 1 and set 2) | 1.34 hours | 45.58 minutes |
The following benchmarks were conducted on various Databricks clusters. Please note that the reconciliation times listed below do not include cluster startup time.
Snowflake cluster details
Type: Standard
Size: Large Cluster (8 nodes, 64 cores)
Cluster1 -- 13.3 LTS (includes Apache Spark 3.4.1, Scala 2.12)
VM | Quantity | Total Cores | Total RAM | |
Driver: | **i3.xlarge** | **1** | **4 cores** | **30.5 GB** |
Workers: | **i3.xlarge** | **16** | **64 cores** | **488 GB** |
Benchmark
Method | Configuration | Set | Time |
---|---|---|---|
Spark (deafult) | - | tpch - Set 1 | 32.01 minutes |
Spark (deafult) | - | tpch - Set 2 | 1.01 hours |
JDBC | number_partitions - 10 | tpch - Set 1 | 43.39 minutes |
JDBC | number_partitions - 10 | tpch - Set 2 | 1.17 hours |
JDBC | number_partitions - 64 | tpch - Set 1 | 25.95 minutes |
JDBC | number_partitions - 64 | tpch - Set 2 | 40.30 minutes |
JDBC | number_partitions - 100 | tpch - Set 2 | 1.02 hours |
TBD
Can we reconcile for Databricks without UC as a target?
The reconciliation target is always Databricks with UC enabled. Reconciler supports non-uc Databricks only as a source.
What would happen if my dataset had duplicate records?
Duplicates are not handled in the reconciler. If run with duplicates, it would result in inconsistent output. We can implement some workarounds to handle the duplicates, and the solution varies from dataset to dataset.
Are User Transformations applicable for Schema Validations?
No. User Transformations are not applied for Schema Validation.Only select_columns,drop_columns and column_mapping is valid for schema validation.
Can we apply Aggregate or multi-column transformations as user transformations?
No. Aggregate transformations or multi-column transformations are not supported.
Does Reconciler support all complex data types?
Not all complex data types are supported currently.Reconciler do support UDFs for complex datatypes.Please refer here for examples.
Does Reconciler support `Column Threshold Validation` for report type as `row`?
No. Column Threshold Validation is supported only for reports with the report type data
or all
, generally tables with
primary keys.
TBD
Please note that all projects in the /databrickslabs github account are provided for your exploration only, and are not formally supported by Databricks with Service Level Agreements (SLAs). They are provided AS-IS and we do not make any guarantees of any kind. Please do not submit a support ticket relating to any issues arising from the use of these projects.
Any issues discovered through the use of this project should be filed as GitHub Issues on the Repo. They will be reviewed as time permits, but there are no formal SLAs for support.