-
Notifications
You must be signed in to change notification settings - Fork 17
/
README
30 lines (22 loc) · 1.33 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Replication Booster -- A Tool for Prefetching MySQL Slave Relay Logs, to make SQL Thread faster
How to use:
* Install boost if not installed (recommended version is 1.39 or higher)
(On RHEL/CentOS5, you can get boost 1.39+ from ATrpms repository)
* Install Binlog API (https://code.launchpad.net/mysql-replication-listener)
* cmake .
* make
* make install
* Run replication_booster
If you have a Replication Listener in a non-standard path (for
example, it is not installed), you can add a search prefix when
executing CMake in the following way:
cmake . -DCMAKE_PREFIX_PATH=<path to replication listener>
This will find the library in the "lib" directory and the include
files in the "include" directory of the repository.
Limitations:
* This project has just been started and code quality and performance should be improved more.
* Replication Booster uses Binlog API. Binlog API is currently (Oct 2011) pre-alpha so make sure to intensively test by yourself, though Replication Booster uses limited features of Binlog API. For example, you may fail to build Replication Booster when Binlog API interface has been changed.
License: GNU General Public License version 2
Author: DeNA Co.,Ltd. <Yoshinori.Matsunobu@gmail.com>
Got contribution from Mats Kindahl <mats@kindahl.net> (supporting cmake)
Got contribution from Davi Arnaut (Twitter patches)