[Bug] There is a problem using mysql-to-mysql with sort
What happened
The data synchronization task I created is from MySQL to MySQL. I use the command line to operate sort, and the database information is correct. However, I see that the jobmanager log on Flink shows that I cannot find the source table I want. Do I need to configure any filtering conditions to do this
mysql2mysql.sql
CREATE TABLE `table_11`(
`name` STRING)
WITH (
'connector' = 'mysql-cdc-inlong',
'hostname' = '192.168.1.133',
'database-name' = 'inlong_test',
'port' = '13306',
'username' = 'root',
'password' = 'qsdi1@3',
'table-name' = 'source_test'
);
CREATE TABLE `table_22`(
PRIMARY KEY (`name`) NOT ENFORCED,
`name` STRING)
WITH (
'connector' = 'jdbc-inlong',
'url' = 'jdbc:mysql://192.168.1.133:13306/inlong_test',
'username' = 'root',
'password' = 'qsdi1@3',
'table-name' = 'target'
);
INSERT INTO `table_22`
SELECT
`name` AS `name`
FROM `table_11`;
CLI: /opt/software/flink/flink-1.13.6/bin/flink run -c org.apache.inlong.sort.Entrance /usr/lib/inlong/inlong-sort/sort-dist-1.9.0.jar --sql.script.file /home/lj/inlong/mysql2mysql.sql
flink jobmanager log:
The log shows that there is actually this table, but it has been filtered out.
What you expected to happen
Can correctly synchronize MySQL to MySQL data
How to reproduce
mysql2mysql.sql
CREATE TABLE `table_11`(
`name` STRING)
WITH (
'connector' = 'mysql-cdc-inlong',
'hostname' = '192.168.1.133',
'database-name' = 'inlong_test',
'port' = '13306',
'username' = 'root',
'password' = 'qsdi1@3',
'table-name' = 'source_test'
);
CREATE TABLE `table_22`(
PRIMARY KEY (`name`) NOT ENFORCED,
`name` STRING)
WITH (
'connector' = 'jdbc-inlong',
'url' = 'jdbc:mysql://192.168.1.133:13306/inlong_test',
'username' = 'root',
'password' = 'qsdi1@3',
'table-name' = 'target'
);
INSERT INTO `table_22`
SELECT
`name` AS `name`
FROM `table_11`;
CLI: /opt/software/flink/flink-1.13.6/bin/flink run -c org.apache.inlong.sort.Entrance /usr/lib/inlong/inlong-sort/sort-dist-1.9.0.jar --sql.script.file /home/lj/inlong/mysql2mysql.sql
Environment
No response
InLong version
1.9.0
InLong Component
InLong Sort
Are you willing to submit PR?
- [X] Yes, I am willing to submit a PR!
Code of Conduct
- [X] I agree to follow this project's Code of Conduct
Hello @LiJie20190102, thank you for opening your first issue in InLong 🧡 We will respond as soon as possible ⏳ If this is a bug report, please provide screenshots or error logs for us to reproduce your issue, so we can do our best to fix it. If you have any questions in the meantime, you can also ask us on the InLong Discussions 🔍
@EMsnap PTAL
@LiJie20190102 You need to config the table name with a database such as 'database.table'. It is 'inlong_test .source_test' in your demo.
@yunqingmoswu @EMsnap
Do I still need to add a library name to the target table? After I added it, there was an exception in the jobmanager. The job is still running, but there is no data in the target table.
Functionally functional, the complete file is as follows:
CREATE TABLE table_11(
id bigint,
PRIMARY KEY(id) NOT ENFORCED
)
WITH (
'connector' = 'mysql-cdc-inlong',
'hostname' = '192.168.1.133',
'database-name' = 'inlong_test',
'port' = '13306',
'username' = 'root',
'password' = 'qsdi1@3',
'table-name' = 'inlong_test.source1'
);
CREATE TABLE table_22(
PRIMARY KEY (id) NOT ENFORCED,
id bigint)
WITH (
'connector' = 'jdbc-inlong',
'url' = 'jdbc:mysql://192.168.1.133:13306/inlong_test',
'username' = 'root',
'password' = 'qsdi1@3',
'table-name' = 'target1'
);
INSERT INTO table_22
SELECT
id AS id
FROM table_11;
This issue is stale because it has been open for 60 days with no activity.