0

I launched a Datastream stream on GCP with a MySQL database as the source, but the stream failed with the following error:

"Binlog is configured incorrectly on the source database."

How can I fix this? Is there something wrong with my source database?

Mzf
  • 5,210
  • 2
  • 24
  • 37
Philipp Sh
  • 967
  • 5
  • 11

1 Answers1

1

According to the Datastream public documentation this happens for MySQL sources if the binlog configuration on the source is incorrect. Perform the following actions:

  1. Verify that binlog is configured correctly.
  2. Confirm that the binary log format of the MySQL database is set to ROW.
  3. Restart the stream.
Philipp Sh
  • 967
  • 5
  • 11