After compiling Percona Server with TokuDB, of course I wanted
to compare InnoDB performance vs TokuDB.
I have a particular workload I’m interested in testing – it is an
insert-intensive workload (which is TokuDB’s strong
suit) with some roll-up aggregation, which should produce
updates in-place (I will use INSERT .. ON DUPLICATE KEY
UPDATE statements for that), so it will produce all good
amount of reads.
A few words about the hardware: I am going to use new the
Dell PowerEdge R420 with two Intel(R) Xeon(R) CPU E5-2450 0 @
2.10GHz, 48GB of RAM and SATA SSD: Kingston HyperX 3K 240
GB.
Workload: I will use two different schemas. The first schema is
from sysbench, and the table looks like:
CREATE TABLE sbtest$I (
id BIGINT UNSIGNED NOT …