You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Sergei Golubchik 69bb48b89b disable unstable tokudb tests 12 years ago
..
doc more doc updates 13 years ago
ft-index after tokudb-7.1.6 merge 12 years ago
mysql-test disable unstable tokudb tests 12 years ago
scripts merge: 12 years ago
tests tokutek/ft-index#76 add US Patent 8,489,638 12 years ago
CMakeLists.in [t:2342], get static linking of fractal tree to handlerton working 13 years ago
CMakeLists.txt after tokudb-7.1.6 merge 12 years ago
COPYING merge with git://github.com/Tokutek/ft-engine.git up to tokudb-7.0.4 12 years ago
README.md merge: 12 years ago
ha_tokudb.cc merge: 12 years ago
ha_tokudb.h merge: 12 years ago
ha_tokudb_admin.cc #200 handle errors when writing cardinality data 12 years ago
ha_tokudb_alter_55.cc tokutek/ft-index#76 add US Patent 8,489,638 12 years ago
ha_tokudb_alter_56.cc #206 compile without partition storage engine 12 years ago
ha_tokudb_alter_common.cc #177 disable inline alter table drop default, add key, drop key, rename column when null bytes changed 12 years ago
ha_tokudb_mrr_maria.cc #195 merge mariadb 10.0.9 12 years ago
ha_tokudb_mrr_mysql.cc tokutek/ft-index#76 add US Patent 8,489,638 12 years ago
ha_tokudb_update.cc #223 build tokudb without upserts 12 years ago
hatoku_cmp.cc #185 fix out of range read from uint3korr 12 years ago
hatoku_cmp.h #194 fix gcc 4.8 warnings 12 years ago
hatoku_defines.h merge: 12 years ago
hatoku_hton.cc merge: 12 years ago
hatoku_hton.h merge: 12 years ago
tokudb.cnf clarify plugin-load usage in tokudb.cnf file 12 years ago
tokudb_buffer.h tokutek/ft-index#76 add US Patent 8,489,638 12 years ago
tokudb_card.h #200 handle errors when writing cardinality data 12 years ago
tokudb_math.h tokutek/ft-index#76 add US Patent 8,489,638 12 years ago
tokudb_status.h tokutek/ft-index#76 add US Patent 8,489,638 12 years ago
tokudb_update_fun.cc #190 zero out new null bytes to force valgrind to quit complaining about uninitialized bytes 12 years ago
tokudb_vlq.h tokutek/ft-index#76 add US Patent 8,489,638 12 years ago

README.md

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 5.5.36 with TokuDB 7.1.5:

scripts/make.mysql.bash --mysqlbuild=mysql-5.5.36-tokudb-7.1.5-linux-x86_64

To build MariaDB 5.5.36 with TokuDB 7.1.5:

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

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.