2020-11-28 15:49:52 +00:00
---
toc_priority: 29
toc_title: MaterializeMySQL
---
# MaterializeMySQL {#materialize-mysql}
2021-01-18 13:43:00 +00:00
Creates ClickHouse database with all the tables existing in MySQL, and all the data in those tables.
2020-11-28 15:49:52 +00:00
2021-01-18 13:43:00 +00:00
ClickHouse server works as MySQL replica. It reads binlog and performs DDL and DML queries.
2020-11-28 15:49:52 +00:00
2021-01-21 20:14:49 +00:00
This feature is experimental.
2020-11-28 15:49:52 +00:00
## Creating a Database {#creating-a-database}
``` sql
CREATE DATABASE [IF NOT EXISTS] db_name [ON CLUSTER cluster]
2021-01-18 15:36:14 +00:00
ENGINE = MaterializeMySQL('host:port', ['database' | database], 'user', 'password') [SETTINGS ...]
2020-11-28 15:49:52 +00:00
```
**Engine Parameters**
2020-11-30 16:09:07 +00:00
- `host:port` — MySQL server endpoint.
2020-12-05 00:53:27 +00:00
- `database` — MySQL database name.
2020-11-28 15:49:52 +00:00
- `user` — MySQL user.
- `password` — User password.
## Virtual columns {#virtual-columns}
2021-01-18 13:43:00 +00:00
When working with the `MaterializeMySQL` database engine, [ReplacingMergeTree ](../../engines/table-engines/mergetree-family/replacingmergetree.md ) tables are used with virtual `_sign` and `_version` columns.
2020-11-28 15:49:52 +00:00
2021-01-18 13:43:00 +00:00
- `_version` — Transaction counter. Type [UInt64 ](../../sql-reference/data-types/int-uint.md ).
- `_sign` — Deletion mark. Type [Int8 ](../../sql-reference/data-types/int-uint.md ). Possible values:
- `1` — Row is not deleted,
- `-1` — Row is deleted.
2020-11-28 15:49:52 +00:00
## Data Types Support {#data_types-support}
2020-12-05 00:53:27 +00:00
| MySQL | ClickHouse |
|-------------------------|--------------------------------------------------------------|
| TINY | [Int8 ](../../sql-reference/data-types/int-uint.md ) |
| SHORT | [Int16 ](../../sql-reference/data-types/int-uint.md ) |
| INT24 | [Int32 ](../../sql-reference/data-types/int-uint.md ) |
| LONG | [UInt32 ](../../sql-reference/data-types/int-uint.md ) |
| LONGLONG | [UInt64 ](../../sql-reference/data-types/int-uint.md ) |
| FLOAT | [Float32 ](../../sql-reference/data-types/float.md ) |
| DOUBLE | [Float64 ](../../sql-reference/data-types/float.md ) |
| DECIMAL, NEWDECIMAL | [Decimal ](../../sql-reference/data-types/decimal.md ) |
| DATE, NEWDATE | [Date ](../../sql-reference/data-types/date.md ) |
| DATETIME, TIMESTAMP | [DateTime ](../../sql-reference/data-types/datetime.md ) |
| DATETIME2, TIMESTAMP2 | [DateTime64 ](../../sql-reference/data-types/datetime64.md ) |
| STRING | [String ](../../sql-reference/data-types/string.md ) |
| VARCHAR, VAR_STRING | [String ](../../sql-reference/data-types/string.md ) |
| BLOB | [String ](../../sql-reference/data-types/string.md ) |
Other types are not supported. If MySQL table contains a column of such type, ClickHouse throws exception "Unhandled data type" and stops replication.
2020-11-28 15:49:52 +00:00
[Nullable ](../../sql-reference/data-types/nullable.md ) is supported.
2020-11-30 16:09:07 +00:00
## Specifics and Recommendations {#specifics-and-recommendations}
2020-11-28 15:49:52 +00:00
2020-12-20 16:38:40 +00:00
### DDL Queries {#ddl-queries}
2020-11-28 15:49:52 +00:00
2020-12-05 00:53:27 +00:00
MySQL DDL queries are converted into the corresponding ClickHouse DDL queries ([ALTER](../../sql-reference/statements/alter/index.md), [CREATE ](../../sql-reference/statements/create/index.md ), [DROP ](../../sql-reference/statements/drop.md ), [RENAME ](../../sql-reference/statements/rename.md )). If ClickHouse cannot parse some DDL query, the query is ignored.
2020-11-28 15:49:52 +00:00
2021-01-18 13:43:00 +00:00
### Data Replication {#data-replication}
2020-11-28 15:49:52 +00:00
2021-01-21 20:14:49 +00:00
`MaterializeMySQL` does not support direct `INSERT` , `DELETE` and `UPDATE` queries. However, they are supported in terms of data replication:
2020-11-28 15:49:52 +00:00
2020-12-20 16:38:40 +00:00
- MySQL `INSERT` query is converted into `INSERT` with `_sign=1` .
2020-11-28 15:49:52 +00:00
2020-12-20 16:38:40 +00:00
- MySQl `DELETE` query is converted into `INSERT` with `_sign=-1` .
2020-11-28 15:49:52 +00:00
2020-12-20 16:38:40 +00:00
- MySQL `UPDATE` query is converted into `INSERT` with `_sign=-1` and `INSERT` with `_sign=1` .
### Selecting from MaterializeMySQL Tables {#select}
2021-01-21 20:14:49 +00:00
`SELECT` query from `MaterializeMySQL` tables has some specifics:
2020-11-28 15:49:52 +00:00
- If `_version` is not specified in the `SELECT` query, [FINAL ](../../sql-reference/statements/select/from.md#select-from-final ) modifier is used. So only rows with `MAX(_version)` are selected.
2021-01-18 13:43:00 +00:00
- If `_sign` is not specified in the `SELECT` query, `WHERE _sign=1` is used by default. So the deleted rows are not included into the result set.
2020-11-28 15:49:52 +00:00
2020-12-20 16:38:40 +00:00
### Index Conversion {#index-conversion}
2020-11-28 15:49:52 +00:00
MySQL `PRIMARY KEY` and `INDEX` clauses are converted into `ORDER BY` tuples in ClickHouse tables.
ClickHouse has only one physical order, which is determined by `ORDER BY` clause. To create a new physical order, use [materialized views ](../../sql-reference/statements/create/view.md#materialized ).
2021-01-18 13:43:00 +00:00
**Notes**
2020-11-28 15:49:52 +00:00
2021-01-18 13:43:00 +00:00
- Rows with `_sign=-1` are not deleted physically from the tables.
- Cascade `UPDATE/DELETE` queries are not supported by the `MaterializeMySQL` engine.
- Replication can be easily broken.
- Manual operations on database and tables are forbidden.
2020-11-28 15:49:52 +00:00
## Examples of Use {#examples-of-use}
2020-12-20 16:38:40 +00:00
Queries in MySQL:
2020-11-28 15:49:52 +00:00
2020-12-20 16:38:40 +00:00
``` sql
2020-11-28 15:49:52 +00:00
mysql> CREATE DATABASE db;
mysql> CREATE TABLE db.test (a INT PRIMARY KEY, b INT);
mysql> INSERT INTO db.test VALUES (1, 11), (2, 22);
mysql> DELETE FROM db.test WHERE a=1;
mysql> ALTER TABLE db.test ADD COLUMN c VARCHAR(16);
mysql> UPDATE db.test SET c='Wow!', b=222;
mysql> SELECT * FROM test;
2020-12-20 16:38:40 +00:00
```
2021-01-18 13:43:00 +00:00
2020-12-20 16:38:40 +00:00
```text
2020-11-28 15:49:52 +00:00
+---+------+------+
| a | b | c |
+---+------+------+
| 2 | 222 | Wow! |
+---+------+------+
```
Database in ClickHouse, exchanging data with the MySQL server:
2020-12-20 16:38:40 +00:00
The database and the table created:
2020-11-28 15:49:52 +00:00
``` sql
CREATE DATABASE mysql ENGINE = MaterializeMySQL('localhost:3306', 'db', 'user', '***');
SHOW TABLES FROM mysql;
```
``` text
┌─name─┐
│ test │
└──────┘
```
2020-12-20 16:38:40 +00:00
After inserting data:
2020-11-28 15:49:52 +00:00
``` sql
SELECT * FROM mysql.test;
```
``` text
┌─a─┬──b─┐
│ 1 │ 11 │
│ 2 │ 22 │
└───┴────┘
```
2020-12-20 16:38:40 +00:00
After deleting data, adding the column and updating:
2020-11-28 15:49:52 +00:00
``` sql
SELECT * FROM mysql.test;
```
``` text
┌─a─┬───b─┬─c────┐
│ 2 │ 222 │ Wow! │
└───┴─────┴──────┘
```
[Original article ](https://clickhouse.tech/docs/en/database_engines/materialize-mysql/ ) <!--hide-->