You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tested this library with success in my mysql local installation and worked out of the box.
But when I deploy to server prod, it raises and error about: code: ‘ER_NO_BINARY_LOGGING’, errno: 1381, sqlMessage: ‘You are not using binary logging’, sqlState: ‘HY000’, index: 0, sql: ‘SHOW BINARY LOGS’
we do not want to activate binary logging at server because it compromises performance.
The text was updated successfully, but these errors were encountered:
This lib reads the binary log in order to generate the events. If you don't have binary logs enabled, there's no other way to know that something happened on your database.
This lib reads the binary log in order to generate the events. If you don't have binary logs enabled, there's no other way to know that something happened on your database.
I tested this library with success in my mysql local installation and worked out of the box.
But when I deploy to server prod, it raises and error about:
code: ‘ER_NO_BINARY_LOGGING’, errno: 1381, sqlMessage: ‘You are not using binary logging’, sqlState: ‘HY000’, index: 0, sql: ‘SHOW BINARY LOGS’
we do not want to activate binary logging at server because it compromises performance.
The text was updated successfully, but these errors were encountered: