MariaDB server is a community developed fork of MySQL server. Started by core members of the original MySQL team, MariaDB actively works with outside developers to deliver the most featureful, stable, and sanely licensed open SQL server in the industry.
Find a file
Rich Prohaska a028e2d054 fix typo
2013-04-19 13:10:11 -04:00
mysql-test refs #6372 save and restore the test dir 2013-04-17 00:02:28 -04:00
scripts fix typo 2013-04-19 13:10:11 -04:00
storage/tokudb refs #6372 really use DB_TYPE_TOKUDB on mysql 5.6, will need an upgrade procedure 2013-04-17 00:02:19 -04:00
.gitignore Import .gitignore 2013-04-17 00:09:27 -04:00
COPYING Import GPLv2,tokudb License 2013-04-17 00:09:27 -04:00
README.md freenode is .net not .org 2013-04-19 08:44:42 -04:00

TokuDB

TokuDB is a high-performance, transactional storage engine for MySQL and MariaDB. For more details, see our product page.

This repository contains the MySQL plugin that uses the TokuKV core.

There are also patches to the MySQL and MariaDB kernels, available in our forks of mysql and mariadb.

Building

The scripts/ directory contains a script that can be used to build a working MySQL or MariaDB with Tokutek patches, and with the TokuDB storage engine, called make.mysql.bash. This script will download copies of the needed source code from github and build everything.

To build MySQL with TokuDB 7.0.0:

scripts/make.mysql.bash --git_tag=tokudb-7.0.0

To build MariaDB with TokuDB 7.0.0:

scripts/make.mysql.bash --git_tag=tokudb-7.0.0 --mysql=mariadb-5.5.30

Before you start, make sure you have a C++11-compatible compiler (GCC >= 4.7 is recommended) and the libraries and header files for valgrind, zlib, and Berkeley DB. On Centos, yum install valgrind-devel zlib-devel libdb-devel, on Ubuntu, apt-get install valgrind zlib1g-dev libdb-dev. If your default compiler is not new enough, you can pass a different one: scripts/make.mysql.bash --cc=gcc47 --cxx=g++47.

Contributing

Please report bugs in TokuDB here on github.

We have two publicly accessible mailing lists:

We are also available on IRC on freenode.net, in the #tokutek channel.

License

TokuDB is available under the GPL version 2. See COPYING

The TokuKV component of TokuDB is available under the GPL version 2, with slight modifications. See README-TOKUDB.