Skip to main content

MySQL loader for mkpipe.

Project description

mkpipe-loader-mysql

MySQL loader plugin for MkPipe. Writes Spark DataFrames into MySQL tables via JDBC.

Documentation

For more detailed documentation, please visit the GitHub repository.

License

This project is licensed under the Apache 2.0 License - see the LICENSE file for details.


Connection Configuration

connections:
  mysql_target:
    variant: mysql
    host: localhost
    port: 3306
    database: mydb
    user: myuser
    password: mypassword

Table Configuration

pipelines:
  - name: pg_to_mysql
    source: pg_source
    destination: mysql_target
    tables:
      - name: public.orders
        target_name: stg_orders
        replication_method: full
        batchsize: 10000

Write Strategy

Control how data is written to MySQL:

      - name: public.orders
        target_name: stg_orders
        write_strategy: upsert       # append | replace | upsert | merge
        write_key: [id]              # required for upsert/merge
Strategy MySQL Behavior
append Plain INSERT via JDBC (default for incremental)
replace Drop and recreate table, then insert (default for full). With if_exists: append: truncate + insert (preserves schema/indexes)
upsert INSERT ... ON DUPLICATE KEY UPDATE via temp table
merge Same as upsert for MySQL

Note: upsert/merge requires write_key. The target table must have a unique index/primary key on the write_key columns.


Write Parallelism & Throughput

      - name: public.orders
        target_name: stg_orders
        replication_method: full
        batchsize: 10000
        write_partitions: 4
  • batchsize: rows per JDBC batch INSERT. MySQL handles 5,000–20,000 well.
  • write_partitions: reduces concurrent JDBC connections via coalesce(N).

All Table Parameters

Parameter Type Default Description
name string required Source table name
target_name string required MySQL destination table name
replication_method full / incremental full Replication strategy
batchsize int 10000 Rows per JDBC batch insert
write_partitions int Coalesce DataFrame to N partitions before writing
write_strategy string append, replace, upsert, merge
write_key list Key columns for upsert/merge (required)
if_exists string replace (drop+create) or append (preserve table, truncate+insert). Inherits from settings
dedup_columns list Columns used for mkpipe_id hash deduplication
tags list [] Tags for selective pipeline execution
pass_on_error bool false Skip table on error instead of failing

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mkpipe_loader_mysql-0.7.0.tar.gz (7.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mkpipe_loader_mysql-0.7.0-py3-none-any.whl (7.6 kB view details)

Uploaded Python 3

File details

Details for the file mkpipe_loader_mysql-0.7.0.tar.gz.

File metadata

  • Download URL: mkpipe_loader_mysql-0.7.0.tar.gz
  • Upload date:
  • Size: 7.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for mkpipe_loader_mysql-0.7.0.tar.gz
Algorithm Hash digest
SHA256 45933ca73f72dc2dfc2e1419fb0c9f8642664dd46d91c0890c1e68308a6ce1c7
MD5 9908c6d30b2553035be2f341d8f258d9
BLAKE2b-256 8367a96e90df1ca2f7bbc51ed638ec89b8d861165ad41c965d394ca89d8d9ea3

See more details on using hashes here.

File details

Details for the file mkpipe_loader_mysql-0.7.0-py3-none-any.whl.

File metadata

File hashes

Hashes for mkpipe_loader_mysql-0.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 91407a50621e28d242c53a852e8f42be72c6a38071b38fe33a07b96515cf39b0
MD5 ae85d3a42dc492510600330717e84653
BLAKE2b-256 ddabf4f0baa1cf433d201077e8ca4c70d2e3b594cadd13069a35a2687223d116

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page