mariadb/storage/tokudb
Sergei Golubchik 06d6552192 5.5 merge
2014-09-23 23:55:29 +02:00
..
doc
ft-index tokudb 7.5.0 2014-09-23 22:03:35 +02:00
mysql-test 5.5 merge 2014-09-23 23:55:29 +02:00
scripts tokudb 7.5.0 2014-09-23 22:03:35 +02:00
tests
CMakeLists.txt 5.5 merge 2014-09-23 23:55:29 +02:00
COPYING
ha_tokudb.cc 5.5 merge 2014-09-23 23:55:29 +02:00
ha_tokudb.h 5.5 merge 2014-09-23 23:55:29 +02:00
ha_tokudb_admin.cc #250 reset thd proc info in end_bulk_insert to fix invalid proc info pointer inside of a deleted ha_tokudb object 2014-06-13 12:06:05 -04:00
ha_tokudb_alter_55.cc
ha_tokudb_alter_56.cc #256 only force MDL X for certain alter table operations 2014-07-03 08:44:40 -04:00
ha_tokudb_alter_common.cc #228 use thd_get/set_ha_data for tokudb_trx data 2014-05-07 15:22:14 -04:00
ha_tokudb_mrr_maria.cc #195 merge mariadb 10.0.9 2014-04-25 14:26:28 -04:00
ha_tokudb_mrr_mysql.cc
ha_tokudb_update.cc #223 build tokudb without upserts 2014-05-03 06:03:39 -04:00
hatoku_cmp.cc #185 fix out of range read from uint3korr 2014-02-14 10:11:51 -05:00
hatoku_cmp.h #194 fix gcc 4.8 warnings 2014-04-25 14:39:53 -04:00
hatoku_defines.h 5.5.39 merge 2014-08-07 18:06:56 +02:00
hatoku_hton.cc 5.5 merge 2014-09-23 23:55:29 +02:00
hatoku_hton.h tokudb 7.5.0 2014-09-23 22:03:35 +02:00
README.md tokudb 7.5.0 2014-09-23 22:03:35 +02:00
tokudb.cnf clarify plugin-load usage in tokudb.cnf file 2014-01-21 17:20:51 +01:00
tokudb_buffer.h
tokudb_card.h revert tokudb changes that caused crashes 2014-06-06 00:09:17 +02:00
tokudb_math.h
tokudb_status.h revert tokudb changes that caused crashes 2014-06-06 00:09:17 +02:00
tokudb_update_fun.cc #190 zero out new null bytes to force valgrind to quit complaining about uninitialized bytes 2014-02-21 15:53:05 -05:00
tokudb_vlq.h

TokuDB

TokuDB is a high-performance, write optimized, transactional storage engine for MySQL and MariaDB. 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.

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 5.5.38 with TokuDB 7.1.7:

scripts/make.mysql.bash --mysqlbuild=mysql-5.5.38-tokudb-7.1.7-linux-x86_64

To build MariaDB 5.5.38 with TokuDB 7.1.7:

scripts/make.mysql.bash --mysqlbuild=mariadb-5.5.38-tokudb-7.1.7-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

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.