mysqlbinlog - How to read a mysql binlog -
i want write service tail mysql bin log notifications database changes.
is there open source library reads , parses mysql bin log in row format?
use mysqlbinlog
.
the server's binary log consists of files containing “events” describe modifications database contents. server writes these files in binary format. display contents in text format, use mysqlbinlog utility. can use mysqlbinlog display contents of relay log files written slave server in replication setup because relay logs have same format binary logs.
source: https://dev.mysql.com/doc/refman/5.6/en/mysqlbinlog.html
Comments
Post a Comment