Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CDC for MySQL 8.4 #16701

Open
yuhao-su opened this issue May 10, 2024 · 3 comments
Open

CDC for MySQL 8.4 #16701

yuhao-su opened this issue May 10, 2024 · 3 comments

Comments

@yuhao-su
Copy link
Contributor

There are some changes in MySQL 8.4. For example SHOW MASTER STATUS, which is used for get the bin log position, does not exist.

@github-actions github-actions bot added this to the release-1.10 milestone May 10, 2024
@cyliu0
Copy link
Contributor

cyliu0 commented May 15, 2024

https://dev.mysql.com/doc/relnotes/mysql/8.4/en/news-8-4-0.html#mysqld-8-4-0-deprecation-removal

SQL statements removed. The following SQL statements have been removed (replacements in brackets): START SLAVE (START REPLICA); STOP SLAVE (STOP REPLICA); SHOW SLAVE STATUS (SHOW REPLICA STATUS); SHOW SLAVE HOSTS (SHOW REPLICAS); RESET SLAVE (RESET REPLICA); CHANGE MASTER TO (CHANGE REPLICATION SOURCE TO); RESET MASTER (RESET BINARY LOGS AND GTIDS); SHOW MASTER STATUS (SHOW BINARY LOG STATUS); PURGE MASTER LOGS (PURGE BINARY LOGS); and SHOW MASTER LOGS (SHOW BINARY LOGS).

@cyliu0
Copy link
Contributor

cyliu0 commented May 15, 2024

Now we can't create MySQL CDC shared source on MySQL 8.4 since the above MySQL changes.

@StrikeW
Copy link
Contributor

StrikeW commented May 15, 2024

SHOW MASTER STATUS is replaced by SHOW BINARY LOG STATUS
https://dev.mysql.com/doc/refman/8.4/en/show-binary-log-status.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants