Last updated on
Quick Start
This page walks through a complete example, from deploying a Flink cluster to using FlinkSQL to read and write Doris data. Before you start, pick a Connector release that matches your Flink and Doris versions according to the Version Notes, and obtain the Jar package as described in Installation.
1. Deploy a Flink Cluster
Take a Standalone cluster as an example:
- Download the Flink 1.18.1 installation package.
- After extracting, place the Flink Doris Connector Jar package under
<FLINK_HOME>/lib. - Enter the
<FLINK_HOME>directory and runbin/start-cluster.shto start the Flink cluster. - Use the
jpscommand to verify that the Flink cluster started successfully.
2. Initialize the Doris Table
Run the following SQL to create Doris tables and write test data:
CREATE DATABASE test;
CREATE TABLE test.student (
`id` INT,
`name` VARCHAR(256),
`age` INT
)
UNIQUE KEY(`id`)
DISTRIBUTED BY HASH(`id`) BUCKETS 1
PROPERTIES (
"replication_allocation" = "tag.location.default: 3"
);
INSERT INTO test.student values(1, "James", 18);
INSERT INTO test.student values(2, "Emily", 28);
CREATE TABLE test.student_trans (
`id` INT,
`name` VARCHAR(256),
`age` INT
)
UNIQUE KEY(`id`)
DISTRIBUTED BY HASH(`id`) BUCKETS 1
PROPERTIES (
"replication_allocation" = "tag.location.default: 3"
);
3. Run a FlinkSQL Job
Start the FlinkSQL Client:
bin/sql-client.sh
Execute the following FlinkSQL:
CREATE TABLE Student (
id STRING,
name STRING,
age INT
)
WITH (
'connector' = 'doris',
'fenodes' = '127.0.0.1:8030',
'table.identifier' = 'test.student',
'username' = 'root',
'password' = ''
);
CREATE TABLE StudentTrans (
id STRING,
name STRING,
age INT
)
WITH (
'connector' = 'doris',
'fenodes' = '127.0.0.1:8030',
'table.identifier' = 'test.student_trans',
'username' = 'root',
'password' = '',
'sink.label-prefix' = 'doris_label'
);
INSERT INTO StudentTrans SELECT id, concat('prefix_', name), age + 1 FROM Student;
4. Query the Result
mysql> select * from test.student_trans;
+------+--------------+------+
| id | name | age |
+------+--------------+------+
| 1 | prefix_James | 19 |
| 2 | prefix_Emily | 29 |
+------+--------------+------+
2 rows in set (0.02 sec)
Next Steps
- Reading Data from Doris and Writing Data to Doris: read protocols, write modes, and their options.
- Full-Database Sync: sync MySQL and other databases to Doris with one command.