Skip to content

[Bug] [Binlog] protobuf dependency loss and guava dependency conflict #1304

@qumaosihaozi

Description

@qumaosihaozi

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

  1. protobuf dependency loss when submit binlog job

46f183870479d77eb29235a56c1b71e

2.guava dependency conflict when job running
eef5cf103901b0ad969abba8d78de65

Version

master

Are you willing to submit PR?

  • Yes I am willing to submit a PR!

Code of Conduct

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions