-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Description
Search before asking
- I had searched in the issues and found no similar issues.
What happened
standalone mode. The binlog job fails
What you expected to happen
The binlog job is running properly
How to reproduce
CREATE TABLE test_source
(
field_id varchar,
project_id varchar,
code varchar,
create_id varchar,
create_date timestamp,
modify_id varchar,
modify_date timestamp,
dispatching_dept_id varchar,
construction_model varchar,
focus_industry_classification varchar,
is_easy_tax varchar,
is_interregional_business varchar,
is_purchase_material varchar,
subjection_scale varchar,
undertake_way varchar,
status varchar
) WITH (
'connector' = 'binlog-x'
,'cat' = 'insert,delete,update'
,'url' = 'jdbc:mysql://localhost:3306/pm?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=UTC'
,'host' = 'localhost'
,'port' = '3306'
,'username' = 'test'
,'password' = 'test'
-- ,'journal-name' = 'mysql-bin.000001'
,'table' = 'test'
,'timestamp-format.standard' = 'SQL'
);
CREATE TABLE test_sink
(
field_id varchar primary key,
project_id varchar,
code varchar,
create_id varchar,
create_date timestamp,
modify_id varchar,
modify_date timestamp,
dispatching_dept_id varchar,
construction_model varchar,
focus_industry_classification varchar,
is_easy_tax varchar,
is_interregional_business varchar,
is_purchase_material varchar,
subjection_scale varchar,
undertake_way varchar,
status varchar
) WITH (
'connector' = 'mysql-x',
'url' = 'jdbc:mysql://localhost:3306/pm?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=UTC',
'table-name' = 'd_test',
'username' = 'test',
'password' = 'test'
);
insert into test_sink
select *
from test_source;
Anything else
- protobuf dependency loss when submit binlog job
2.guava dependency conflict when job running

Version
master
Are you willing to submit PR?
- Yes I am willing to submit a PR!
Code of Conduct
- I agree to follow this project's Code of Conduct
