Stewart blogged about the archive storage
engine and he asked the Internet to test how fast ARCHIVE is
compared with other MySQL storage engines like Percona XtraDB and
Tokutek TokuDB. Since I've been curious about this subject as
well, I decided to give it a quick test.
Not very compressible data
I took a star schema benchmark "lineorder" file and grabbed the
first 15M rows. To each row I added a TEXT field called
"extra_data". This field contains 10 random words from
/usr/share/dict/words separated by space. This adds up to just
about 3GB of raw input data.
Insert performance with no indexes (best to worst)
TokuDB: 187K rows/sec
Query OK, 15000000 rows affected (1 min 20.25 sec)
XtraDB (uncompressed): 119K rows/sec:
Query OK, 15000000 rows affected …[Read more]