Migrating a database from MySQL® to ClickHouse® using Yandex Data Transfer
With Data Transfer, you can migrate your database from a MySQL® source cluster to ClickHouse®.
To transfer data:
- Prepare the source cluster.
 - Set up and activate the transfer.
 - Test your transfer.
 - Select the data from ClickHouse®.
 
If you no longer need the resources you created, delete them.
Required paid resources
The support cost for this solution includes:
- Managed Service for MySQL® cluster fee: Covers the use of computational resources allocated to hosts and disk storage (see Managed Service for MySQL® pricing).
 - Managed Service for ClickHouse® cluster fee: Covers the use of computational resources allocated to hosts (including ZooKeeper hosts) and disk storage (see Managed Service for ClickHouse® pricing).
 - Fee for public IP addresses if public access is enabled for cluster hosts (see Virtual Private Cloud pricing).
 - Transfer fee: Based on computational resource consumption and the total number of data rows transferred (see Data Transfer pricing).
 
Getting started
Set up the infrastructure:
- 
Create a Managed Service for MySQL® source cluster in any suitable configuration. To connect to the cluster from the user's local machine rather than doing so from the Yandex Cloud cloud network, enable public access to the cluster when creating it.
 - 
Create a Managed Service for ClickHouse® target cluster of any suitable configuration with the following settings:
- Number of ClickHouse® hosts: At least two, which is required to enable replication in the cluster.
 - Database name: Same as in the source cluster.
 - To connect to the cluster from the user's local machine rather than doing so from the Yandex Cloud cloud network, enable public access to the cluster when creating it.
 
 - 
If you are using security groups in your clusters, configure them so that you can connect to the clusters from the internet:
 
- 
If you do not have Terraform yet, install it.
 - 
Get the authentication credentials. You can add them to environment variables or specify them later in the provider configuration file.
 - 
Configure and initialize a provider. There is no need to create a provider configuration file manually, you can download it
 . - 
Place the configuration file in a separate working directory and specify the parameter values. If you did not add the authentication credentials to environment variables, specify them in the configuration file.
 - 
Download the data-transfer-mmy-mch.tf
 configuration file to the same working directory.This file describes:
- Network.
 - Subnets.
 - Security group and the rule required to connect to a Managed Service for MySQL® cluster.
 - Managed Service for MySQL® source cluster.
 - Managed Service for ClickHouse® target cluster.
 - Source endpoint.
 - Target endpoint.
 - Transfer.
 
 - 
In the
data-transfer-mmy-mch.tffile, specify the following:- 
The Managed Service for MySQL® source cluster parameters that will be used as the source endpoint parameters:
source_mysql_version: MySQL® version.source_db_name: MySQL® database name.source_userandsource_password: Name and user password of the database owner.
 - 
The Managed Service for ClickHouse® target cluster parameters that will be used as the target endpoint parameters:
target_db_name: ClickHouse® database name.target_userandtarget_password: Name and user password of the database owner.
 
 - 
 - 
Validate your Terraform configuration files using this command:
terraform validateTerraform will display any configuration errors detected in your files.
 - 
Create the required infrastructure:
- 
Run this command to view the planned changes:
terraform planIf you described the configuration correctly, the terminal will display a list of the resources to update and their parameters. This is a verification step that does not apply changes to your resources.
 - 
If everything looks correct, apply the changes:
- 
Run this command:
terraform apply - 
Confirm updating the resources.
 - 
Wait for the operation to complete.
 
 - 
 
All the required resources will be created in the specified folder. You can check resource availability and their settings in the management console
 . - 
 
Prepare the source cluster
- 
If you created the infrastructure manually, prepare the source cluster.
 - 
Add test data to the database.
- Create a table named 
x_tab: 
CREATE TABLE x_tab ( id INT, name TEXT, PRIMARY KEY (id) );- Populate the table with data:
 
INSERT INTO x_tab (id, name) VALUES (40, 'User1'), (41, 'User2'), (42, 'User3'), (43, 'User4'), (44, 'User5'); - Create a table named 
 
Set up and activate the transfer
- 
- 
Database type:
MySQL® - 
Endpoint parameters → Connection settings:
Managed Service for MySQL clusterSelect a source cluster from the list and specify its connection settings.
 
 - 
 - 
- 
Database type:
ClickHouse - 
Endpoint parameters → Connection settings:
Managed clusterSelect a target cluster from the list and specify its connection settings.
 
 - 
 - 
Create a transfer of the Snapshot and replication type that will use the created endpoints.
 - 
Activate your transfer.
 
- 
In the
data-transfer-mmy-mch.tffile, set thetransfer_enabledvariable to1. - 
Validate your Terraform configuration files using this command:
terraform validateTerraform will display any configuration errors detected in your files.
 - 
Create the required infrastructure:
- 
Run this command to view the planned changes:
terraform planIf you described the configuration correctly, the terminal will display a list of the resources to update and their parameters. This is a verification step that does not apply changes to your resources.
 - 
If everything looks correct, apply the changes:
- 
Run this command:
terraform apply - 
Confirm updating the resources.
 - 
Wait for the operation to complete.
 
 - 
 
Once created, your transfer is activated automatically.
 - 
 
Test your transfer
- 
Wait for the transfer status to change to Replicating.
 - 
Make sure the data from the source Managed Service for MySQL® cluster has been moved to the Managed Service for ClickHouse® database:
- 
Connect to the cluster using
clickhouse-client. - 
Run this query:
SELECT * FROM <ClickHouse®_database_name>.x_tabResult:
┌─id─┬─name──┬─__data_transfer_commit_time─┬─__data_transfer_delete_time─┐ │ 40 │ User1 │ 1661952756538347180 │ 0 │ │ 41 │ User2 │ 1661952756538347180 │ 0 │ │ 42 │ User3 │ 1661952756538347180 │ 0 │ │ 43 │ User4 │ 1661952756538347180 │ 0 │ │ 44 │ User5 │ 1661952756538347180 │ 0 │ └────┴───────┴─────────────────────────────┴─────────────────────────────┘The table also contains columns with timestamps:
__data_transfer_commit_timeand__data_transfer_delete_time. 
 - 
 - 
In the
x_tabtable of the source MySQL® database, delete the row whereidequals41and update the one whereidequals42:- 
Run the following requests:
DELETE FROM x_tab WHERE id = 41; UPDATE x_tab SET name = 'Key3' WHERE id = 42; 
 - 
Check the changes in the
x_tabtable of the ClickHouse® target:SELECT * FROM <ClickHouse®_database_name>.x_tab WHERE id in (41,42);Result:
┌─id─┬─name──┬─__data_transfer_commit_time─┬─__data_transfer_delete_time─┐ │ 41 │ User2 │ 1661952756538347180 │ 0 │ │ 42 │ User3 │ 1661952756538347180 │ 0 │ └────┴───────┴─────────────────────────────┴─────────────────────────────┘ ┌─id─┬─name─┬─__data_transfer_commit_time─┬─__data_transfer_delete_time─┐ │ 41 │ ᴺᵁᴸᴸ │ 1661953256000000000 │ 1661953256000000000 │ └────┴──────┴─────────────────────────────┴─────────────────────────────┘ ┌─id─┬─name─┬─__data_transfer_commit_time─┬─__data_transfer_delete_time─┐ │ 42 │ Key3 │ 1661953280000000000 │ 0 │ └────┴──────┴─────────────────────────────┴─────────────────────────────┘ 
Select the data from ClickHouse®
For table recovery, the ClickHouse® target with replication enabled uses the ReplicatedReplacingMergeTree
- 
__data_transfer_commit_time: Time when the was row updated to this value, inTIMESTAMPformat. - 
__data_transfer_delete_time: Row deletion time, inTIMESTAMPformat, if the row was deleted in the source. If the row was not deleted, the value is set to0.The
__data_transfer_commit_timecolumn is required for the ReplicatedReplacedMergeTree engine to work. If a record is deleted or updated, a new row is inserted with a value in this column. A query by a single primary key returns multiple records with different__data_transfer_commit_timevalues. 
With the Replicating transfer status, the source data can be added or deleted. To ensure standard behavior of SQL commands when a primary key points to a single record, provide a clause to filter data by __data_transfer_delete_time when querying tables transferred to ClickHouse®. Here is an example of a query to the x_tab table:
SELECT * FROM <ClickHouse®_database_name>.x_tab FINAL
WHERE __data_transfer_delete_time = 0;
        
    To simplify the SELECT queries, create a view with filtering by __data_transfer_delete_time and use it for querying. Here is an example of a query to the x_tab table:
CREATE VIEW x_tab_view AS SELECT * FROM <ClickHouse®_database_name>.x_tab FINAL
WHERE __data_transfer_delete_time == 0;
        
    Delete the resources you created
Note
Before deleting the created resources, deactivate the transfer.
Some resources incur charges. To avoid paying for them, delete the resources you no longer need:
- Delete the transfer.
 - Delete the endpoints for both the source and target.
 - Delete the Managed Service for MySQL® cluster.
 - Delete the Managed Service for ClickHouse® cluster.
 
- 
In the terminal window, go to the directory containing the infrastructure plan.
Warning
Make sure the directory has no Terraform manifests with the resources you want to keep. Terraform deletes all resources that were created using the manifests in the current directory.
 - 
Delete resources:
- 
Run this command:
terraform destroy - 
Confirm deleting the resources and wait for the operation to complete.
 
All the resources described in the Terraform manifests will be deleted.
 - 
 
ClickHouse® is a registered trademark of ClickHouse, Inc