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

Bug - docker compose parameter doesn't updated #549

Open
davinc71998 opened this issue Oct 15, 2023 · 1 comment
Open

Bug - docker compose parameter doesn't updated #549

davinc71998 opened this issue Oct 15, 2023 · 1 comment
Assignees

Comments

@davinc71998
Copy link
Contributor

davinc71998 commented Oct 15, 2023

Issue Summary

In python-mysql-replication (version 1.0.0~ ) need to execute binlog schema parsing. To achieve this, it seems that I need to set the binlog_row_metadata option to FULL in my Docker Compose configuration.

x-mysql: &mysql
  environment:
    MYSQL_ALLOW_EMPTY_PASSWORD: true
  command: >
    mysqld
    --log-bin=mysql-bin.log
    --server-id 1
    --binlog-format=row
    --gtid_mode=on
    --enforce-gtid-consistency=on

x-mariadb: &mariadb
  environment:
    MARIADB_ALLOW_EMPTY_ROOT_PASSWORD: 1
  command: >
    --log-bin=master-bin
    --server-id=1
    --default-authentication-plugin=mysql_native_password
    --binlog-format=row

Solution

set the binlog_row_metadata option to FULL in my Docker Compose configuration.

@davinc71998
Copy link
Contributor Author

I'm solving it with @jaehyeonpy

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

No branches or pull requests

1 participant