[X] I searched in the issues and found nothing similar.
Flink version
image flink:scala_2.12-java8, consistent with the doc
Flink CDC version
Both 3.0.0 and 3.0.1 have the same issue
Database and its version
debezium/example-mysql:1.1,registry.starrocks.io/starrocks/allin1-ubuntu
consistent with the doc
Minimal reproduce step
Upon following the steps in the documentation, after completing the 'Submit job using FlinkCDC cli' step, I created a new table orders_1 and inserted columns into it
Here is the schema for the orders_1 table I created:
CREATE TABLE orders_1 (
id INT NOT NULL,
price DECIMAL(10,2) NOT NULL,
PRIMARY KEY (id)
);
What did you expect to see?
Table orderrs_1 should be synchronized to starrocks
What did you see instead?
A few days ago, while testing and inserting columns into 'orders_1', an error stating 'schema orders_1 does not exist' occurred. Now, I am unable to reproduce this error. However, the issue of CDC showing no response to the new table 'orders_1' persists.
Search before asking
Flink version
image flink:scala_2.12-java8, consistent with the doc
Flink CDC version
Both 3.0.0 and 3.0.1 have the same issue
Database and its version
debezium/example-mysql:1.1,registry.starrocks.io/starrocks/allin1-ubuntu consistent with the doc
Minimal reproduce step
Upon following the steps in the documentation, after completing the 'Submit job using FlinkCDC cli' step, I created a new table orders_1 and inserted columns into it Here is the schema for the orders_1 table I created: CREATE TABLE
orders_1
(id
INT NOT NULL,price
DECIMAL(10,2) NOT NULL, PRIMARY KEY (id
) );What did you expect to see?
Table orderrs_1 should be synchronized to starrocks
What did you see instead?
A few days ago, while testing and inserting columns into 'orders_1', an error stating 'schema orders_1 does not exist' occurred. Now, I am unable to reproduce this error. However, the issue of CDC showing no response to the new table 'orders_1' persists.
Anything else?
No response
Are you willing to submit a PR?