mariadb/storage/tokudb
Sergei Golubchik 181b13d926 simplify CMakeLists.txt for cassandra/connect engines
now, if the dynamic plugin puts itself in a distinct component, then
* ${plugin}.cnf file is generated and installed automatically
* a separate RPM is generated automatically
* necessary FILELIST/PROVIDES/OBSOLETES/REQUIRES are filled in automatically
2013-09-25 19:32:14 +02:00
..
doc more doc updates 2013-04-17 00:02:07 -04:00
ft-index Fixed issue where tokudb xz used lib64 in some cases, which caused a link failure 2013-09-23 20:25:14 +03:00
mysql-test TokuDB now compiles and passes all tests as in 5.5 2013-09-21 10:16:06 +02:00
scripts merge with git://github.com/Tokutek/ft-engine.git up to tokudb-7.0.4 2013-09-09 11:12:52 +02:00
tests svn #6706 add GPL headers to the tokudb handlerton 2013-05-28 08:33:07 -04:00
CMakeLists.in [t:2342], get static linking of fractal tree to handlerton working 2013-04-17 00:01:58 -04:00
CMakeLists.txt simplify CMakeLists.txt for cassandra/connect engines 2013-09-25 19:32:14 +02:00
COPYING merge with git://github.com/Tokutek/ft-engine.git up to tokudb-7.0.4 2013-09-09 11:12:52 +02:00
ha_tokudb.cc TokuDB now compiles and passes all tests as in 5.5 2013-09-21 10:16:06 +02:00
ha_tokudb.h TokuDB now compiles and passes all tests as in 5.5 2013-09-21 10:16:06 +02:00
ha_tokudb_admin.cc svn #6706 add GPL headers to the tokudb handlerton 2013-05-28 08:33:07 -04:00
ha_tokudb_alter_55.cc svn #6706 add GPL headers to the tokudb handlerton 2013-05-28 08:33:07 -04:00
ha_tokudb_alter_56.cc tokudb: COMPRESSION = { DEFAULT | TOKUDB_UNCOMPRESSED | 2013-09-09 13:35:00 +02:00
ha_tokudb_alter_common.cc tokudb: CLUSTERING=YES syntax for indexes 2013-09-09 13:34:50 +02:00
ha_tokudb_mrr_maria.cc TokuDB now compiles and passes all tests as in 5.5 2013-09-21 10:16:06 +02:00
ha_tokudb_mrr_mysql.cc svn #6706 add GPL headers to the tokudb handlerton 2013-05-28 08:33:07 -04:00
ha_tokudb_update.cc tokudb: CLUSTERING=YES syntax for indexes 2013-09-09 13:34:50 +02:00
hatoku_cmp.cc TokuDB now compiles and passes all tests as in 5.5 2013-09-21 10:16:06 +02:00
hatoku_cmp.h TokuDB now compiles and passes all tests as in 5.5 2013-09-21 10:16:06 +02:00
hatoku_defines.h 5.5 merge and fixes for compiler/test errors 2013-09-18 13:07:31 +02:00
hatoku_hton.cc TokuDB now compiles and passes all tests as in 5.5 2013-09-21 10:16:06 +02:00
hatoku_hton.h svn #6706 add GPL headers to the tokudb handlerton 2013-05-28 08:33:07 -04:00
README.md merge with git://github.com/Tokutek/ft-engine.git up to tokudb-7.0.4 2013-09-09 11:12:52 +02:00
tokudb.cnf simplify CMakeLists.txt for cassandra/connect engines 2013-09-25 19:32:14 +02:00
tokudb_buffer.h svn #6706 add GPL headers to the tokudb handlerton 2013-05-28 08:33:07 -04:00
tokudb_card.h svn #6706 add GPL headers to the tokudb handlerton 2013-05-28 08:33:07 -04:00
tokudb_math.h svn #6706 add GPL headers to the tokudb handlerton 2013-05-28 08:33:07 -04:00
tokudb_status.h svn #6706 add GPL headers to the tokudb handlerton 2013-05-28 08:33:07 -04:00
tokudb_update_fun.cc svn #6706 add GPL headers to the tokudb handlerton 2013-05-28 08:33:07 -04:00
tokudb_vlq.h svn #6706 add GPL headers to the tokudb handlerton 2013-05-28 08:33:07 -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.1:

scripts/make.mysql.bash --mysqlbuild=mysql-5.5.30-tokudb-7.0.1-linux-x86_64

To build MariaDB with TokuDB 7.0.1:

scripts/make.mysql.bash --mysqlbuild=mariadb-5.5.30-tokudb-7.0.1-linux-x86_64

Before you start, make sure you have a C++11-compatible compiler (GCC >= 4.7 is recommended), as well as CMake >=2.8.8, 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.

You can set the compiler by passing --cc and --cxx to the script, to select one that's new enough. The default is scripts/make.mysql.bash --cc=gcc47 --cxx=g++47, which may not exist on your system.

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.