If the binlog is OFF, add the properties in the following table to the configuration file for the MariaDB server:
Copy
Ask AI
server-id = 223344 # Querying variable is called server_id, e.g. SELECT variable_value FROM information_schema.global_variables WHERE variable_name='server_id';log_bin = mariadb-binbinlog_format = ROWbinlog_row_image = FULLbinlog_expire_logs_seconds = 864000
Verify the setting of the binlog_row_value_options variable in the database. To enable the connector to consume UPDATE events, this variable must be set to a value other than PARTIAL_JSON.
Check current variable value
Copy
Ask AI
SHOW GLOBAL VARIABLES WHERE variable_name = 'binlog_row_value_options';
Result
Variable_name
Value
binlog_row_value_options
If the value of the variable is set to PARTIAL_JSON, run the following command to unset it: