mariadb/storage/tokudb
Vicențiu Ciorbaru 64149590c4 MDEV-7526: TokuDB doesn't build on OS X
This patch fixes another compilation error caused by specifying
attribute nonnull for all the parameters of the copyout function. This
is incorrect as the function actually gets called with null parameters
indirectly and thus only the output parameter should be nonnull.
2015-12-19 14:14:10 +02:00
..
doc
doc2 Merge tag 'tokudb-7.5.5' into bb-5.5-merge 2015-02-12 00:23:21 +01:00
ft-index MDEV-7526: TokuDB doesn't build on OS X 2015-12-19 14:14:10 +02:00
mysql-test more renames after tokudb merge 2015-06-11 17:47:52 +02:00
scripts Merge commit 'tokudb-engine/tokudb-7.5.6' into 5.5 2015-04-27 16:19:54 +02:00
tests DB-759 test and fix alter table bug with cardinality data 2014-11-13 10:53:22 -05:00
CMakeLists.txt update tokudb version 2015-06-08 21:48:19 +02:00
COPYING
ha_tokudb.cc Merge tag 'tokudb-engine/tokudb-7.5.7' into 5.5 2015-06-03 20:24:51 +02:00
ha_tokudb.h restore an incorrectly merged line 2015-01-16 17:54:00 +01:00
ha_tokudb_admin.cc DB-834 check table reports the corrupt index name 2015-04-01 07:25:04 -04:00
ha_tokudb_alter_55.cc
ha_tokudb_alter_56.cc DB-823 fix lock tables + transaction accounting for subsequent operations 2015-03-04 15:49:27 -05:00
ha_tokudb_alter_common.cc
ha_tokudb_mrr_maria.cc
ha_tokudb_mrr_mysql.cc
ha_tokudb_update.cc
hatoku_cmp.cc tokudb compilation warnings 2015-12-07 15:20:24 +01:00
hatoku_cmp.h tokudb compilation warnings 2015-12-07 15:20:24 +01:00
hatoku_defines.h Merge tag 'tokudb-engine/tokudb-7.5.7' into 5.5 2015-06-03 20:24:51 +02:00
hatoku_hton.cc Merge tag 'tokudb-engine/tokudb-7.5.7' into 5.5 2015-06-03 20:24:51 +02:00
hatoku_hton.h tokudb compilation warnings 2015-12-07 15:20:24 +01:00
README.md Merge commit 'tokudb-engine/tokudb-7.5.6' into 5.5 2015-04-27 16:19:54 +02:00
tokudb.cnf
tokudb_buffer.h
tokudb_card.h DB-813 add an interrupt callback to the analyze cursor to allow early termination, plus detect garbage rows during analyze scan 2015-02-16 10:46:46 -05:00
tokudb_math.h
tokudb_status.h
tokudb_update_fun.cc DB-771 fix incorrect assert in update callback for varchar expansion 2014-11-21 07:13:07 -05:00
tokudb_vlq.h

TokuDB

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

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

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

Download

Build

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 5.5.41 with TokuDB 7.5.5:

scripts/make.mysql.bash --mysqlbuild=mysql-5.5.41-tokudb-7.5.5-linux-x86_64

To build MariaDB 5.5.41 with TokuDB 7.5.5:

scripts/make.mysql.bash --mysqlbuild=mariadb-5.5.41-tokudb-7.5.5-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. We are using the gcc 4.7 in devtoolset-1.1.

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.

To build a debug MySQL with TokuDB using the head of the Tokutek github repositories, run this:

scripts/make.mysql.debug.env.bash

We use gcc from devtoolset-1.1 on CentOS 5.9 for builds.

Contribute

Please report TokuDB bugs at https://tokutek.atlassian.net/browse/DB.

We have two publicly accessible mailing lists:

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

License

TokuDB is available under the GPL version 2. See COPYING

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