MySQL replication is among the top features of MySQL. In
replication data is replicated from one MySQL Server (also knows
as Master) to another MySQL Server(also known as Slave). MySQL
Binlog Events is a set of libraries which work on top of
replication and open directions for myriad of use cases like
extracting data from binary log files, building application to
support heterogeneous replication, filtering events from binary
log files and much more.
All this in REAL TIME .
INTRODUCTION
I have already defined what MySQL Binlog Events is, to deliver on
any of the above use-cases, you first need to read the event from
the binary log. This can be done using two types of transports:
1) TCP transport: Here your application will connect to an online MySQL Server and receive events as and when they occur.
2) File transport: As the name suggests the application will connect to an …
[Read more]