Skip to main content

Create a MySQL ingestion pipeline

Preview

The MySQL connector is in Public Preview. Contact your Databricks account team to request access.

Learn how to ingest data from MySQL into Databricks using Lakeflow Connect. The MySQL connector supports Amazon RDS for MySQL, Aurora MySQL, Azure Database for MySQL, Google Cloud SQL for MySQL, and MySQL running on EC2.

Before you begin

To create an ingestion gateway and an ingestion pipeline, you must meet the following requirements:

  • Your workspace is enabled for Unity Catalog.

  • Serverless compute is enabled for your workspace. See Serverless compute requirements.

  • If you plan to create a connection: You have CREATE CONNECTION privileges on the metastore.

    If your connector supports UI-based pipeline authoring, you can create the connection and the pipeline at the same time by completing the steps on this page. However, if you use API-based pipeline authoring, you must create the connection in Catalog Explorer before you complete the steps on this page. See Connect to managed ingestion sources.

  • If you plan to use an existing connection: You have USE CONNECTION privileges or ALL PRIVILEGES on the connection.

  • You have USE CATALOG privileges on the target catalog.

  • You have USE SCHEMA, CREATE TABLE, and CREATE VOLUME privileges on an existing schema or CREATE SCHEMA privileges on the target catalog.

  • Unrestricted permissions to create clusters, or a custom policy (API only). A custom policy for the gateway must meet the following requirements:

    • Family: Job Compute

    • Policy family overrides:

      {
      "cluster_type": {
      "type": "fixed",
      "value": "dlt"
      },
      "num_workers": {
      "type": "unlimited",
      "defaultValue": 1,
      "isOptional": true
      },
      "runtime_engine": {
      "type": "fixed",
      "value": "STANDARD",
      "hidden": true
      }
      }
    • The following compute policy enables Databricks to scale the ingestion gateway to meet the needs of your workload. The minimum requirement is 4 cores. However, for better snapshot extraction performance, Databricks recommends using larger instance types with more memory and CPU cores.

      Python
      {
      "driver_node_type_id": {
      "type": "fixed",
      "value": "n2-highmem-8"
      },
      "node_type_id": {
      "type": "fixed",
      "value": "n2-standard-4"
      }
      }

    For more information about cluster policies, see Select a compute policy.

To ingest from MySQL, you must also complete the source setup.

Option 1: Databricks UI

Admin users can create a connection and a pipeline at the same time in the UI. This is the simplest way to create managed ingestion pipelines.

  1. In the sidebar of the Databricks workspace, click Data Ingestion.

  2. On the Add data page, under Databricks connectors, click MySQL. The ingestion wizard opens.

  3. On the Ingestion gateway page of the wizard, enter a unique name for the gateway.

  4. Select a catalog and a schema for the staging ingestion data, then click Next.

  5. On the Ingestion pipeline page, enter a unique name for the pipeline.

  6. For Destination catalog, select a catalog to store the ingested data.

  7. Select the Unity Catalog connection that stores the credentials required to access the source data.

    If there are no existing connections to the source, click Create connection and enter the authentication details you obtained from the source setup. You must have CREATE CONNECTION privileges on the metastore.

    note

    The Test Connection button might fail for MySQL users using sha256_password or caching_sha2_password authentication. This is a known limitation. You can still proceed with creating the connection.

  8. Click Create pipeline and continue.

  9. On the Source page, select the databases and tables to ingest.

  10. Optionally change the default history tracking setting. For more information, see Enable history tracking (SCD type 2).

  11. Click Next.

  12. On the Destination page, select the Unity Catalog catalog and schema to write to.

    If you don't want to use an existing schema, click Create schema. You must have USE CATALOG and CREATE SCHEMA privileges on the parent catalog.

  13. Click Save and continue.

  14. (Optional) On the Settings page, click Create schedule. Set the frequency to refresh the destination tables.

  15. (Optional) Set email notifications for pipeline operation success or failure.

  16. Click Save and run pipeline.

Option 2: Programmatic interfaces

Before you ingest using Databricks Asset Bundles, Databricks APIs, Databricks SDKs, or the Databricks CLI, you must have access to an existing Unity Catalog connection. For instructions, see Connect to managed ingestion sources.

Create the staging catalog and schema

The staging catalog and schema can be the same as the destination catalog and schema. The staging catalog can't be a foreign catalog.

Bash
export CONNECTION_NAME="my_mysql_connection"
export TARGET_CATALOG="main"
export TARGET_SCHEMA="lakeflow_mysql_connector"
export STAGING_CATALOG=$TARGET_CATALOG
export STAGING_SCHEMA=$TARGET_SCHEMA
export DB_HOST="mysql-instance.region.rds.amazonaws.com"
export DB_PORT="3306"
export DB_USER="databricks_replication"
export DB_PASSWORD="your_secure_password"

output=$(databricks connections create --json '{
"name": "'"$CONNECTION_NAME"'",
"connection_type": "MYSQL",
"options": {
"host": "'"$DB_HOST"'",
"port": "'"$DB_PORT"'",
"user": "'"$DB_USER"'",
"password": "'"$DB_PASSWORD"'"
}
}')

export CONNECTION_ID=$(echo $output | jq -r '.connection_id')

Create the gateway and the ingestion pipeline

The ingestion gateway extracts snapshot and change data from the source database and stores it in a Unity Catalog staging volume. You must run the gateway as a continuous pipeline. This accommodates binlog retention policies on the source database.

The ingestion pipeline applies the snapshot and change data from the staging volume into destination streaming tables.

This tab describes how to deploy an ingestion pipeline using Databricks Asset Bundles. Bundles can contain YAML definitions of jobs and tasks, are managed using the Databricks CLI, and can be shared and run in different target workspaces (such as development, staging, and production). For more information, see Databricks Asset Bundles.

  1. Create a new bundle using the Databricks CLI:

    Bash
    databricks bundle init
  2. Add two new resource files to the bundle:

    • A pipeline definition file (resources/mysql_pipeline.yml).
    • A workflow file that controls the frequency of data ingestion (resources/mysql_job.yml).

    The following is an example resources/mysql_pipeline.yml file:

    YAML
    variables:
    # Common variables used multiple places in the DAB definition.
    gateway_name:
    default: mysql-gateway
    dest_catalog:
    default: main
    dest_schema:
    default: ingest-destination-schema

    resources:
    pipelines:
    gateway:
    name: ${var.gateway_name}
    gateway_definition:
    connection_name: <mysql-connection>
    gateway_storage_catalog: main
    gateway_storage_schema: ${var.dest_schema}
    gateway_storage_name: ${var.gateway_name}
    target: ${var.dest_schema}
    catalog: ${var.dest_catalog}

    pipeline_mysql:
    name: mysql-ingestion-pipeline
    ingestion_definition:
    ingestion_gateway_id: ${resources.pipelines.gateway.id}
    objects:
    # Modify this with your tables!
    - table:
    # Ingest the table mydb.customers to dest_catalog.dest_schema.customers
    source_schema: public
    source_table: customers
    destination_catalog: ${var.dest_catalog}
    destination_schema: ${var.dest_schema}
    - schema:
    # Ingest all tables in the mydb.sales schema to dest_catalog.dest_schema
    # The destination table name will be the same as it is on the source
    source_schema: sales
    destination_catalog: ${var.dest_catalog}
    destination_schema: ${var.dest_schema}
    target: ${var.dest_schema}
    catalog: ${var.dest_catalog}

    The following is an example resources/mysql_job.yml file:

    YAML
    resources:
    jobs:
    mysql_dab_job:
    name: mysql_dab_job

    trigger:
    # Run this job every day, exactly one day from the last run
    # See https://docs.databricks.com/api/workspace/jobs/create#trigger
    periodic:
    interval: 1
    unit: DAYS

    email_notifications:
    on_failure:
    - <email-address>

    tasks:
    - task_key: refresh_pipeline
    pipeline_task:
    pipeline_id: ${resources.pipelines.pipeline_mysql.id}
  3. Deploy the pipeline using the Databricks CLI:

    Bash
    databricks bundle deploy

Additional resources