This is a library that allows any arbitrary C++ application to connect to a Mysql replication master and read/parse the replication binary logs.
In effect, any application can now act like a Mysql replication slave, without having to compile or link with any Mysql server code.
One important use-case for this library is for receiving changes in the master database in real-time, without having the store the master's data on the client server.
boost::variant
instead of boost::any
for field
value storing.vector
by indexes instead of std::map
by names. Must be used in conjunction with column filter.For building the library, you will need:
g++ with C++11 support.
The standard mysql C client libraries (libmysqlclient):
The headers of the boost libraries (http://www.boost.org). At the minimum, you will need at least the any.hpp. If boost_unit_test_framework is found, tests will be built.
You (likely) will need to review and edit the contents of Logging.h and SlaveStats.h These headers contain the compile-time configuration of the logging and monitoring subsystems. The provided defaults are sub-standard and an example only.
REPLICATION SLAVE
and REPLICATION CLIENT
, and SELECT
for tables being used.Create directory "build" in source tree, step into it and run "cmake .. -DCMAKE_BUILD_TYPE=Release". Then, if configure step is complete, run "make".
Review and edit Logging.h and SlaveStats.h to interface the library to your app's logging and monitoring subsystems.
You can type "make test" inside of "build" directory to run tests. You will need a working mysql server for it. Settings of mysql connection can be adjusted in test/data/mysql.conf. Type "ctest -V" if something went wrong and you need see test output.
Please see the examples in 'test/'.
You can find the programmer's API documentation on our github wiki pages, see https://github.com/vozbu/libslave/wiki/API.
Please read this article about real project libslave usage: http://habrahabr.ru/company/mailru/blog/219015/
(c) 2011, ZAO "Begun"
https://github.com/Begun/libslave
(c) 2016, "Mail.Ru Group" LLC
https://github.com/vozbu/libslave
This library is licensed under the GNU LGPL. Please see the file LICENSE.