Since Oracle announced the InnoDB
plugin which provides compressed row formats, I thought I'd
do this comparison again.
Here are some more data that I've cobbled together.
I've created a 2M row table with a schema that we use for audit
data. It has 47 columns and 17 indexes.
I copied the table into new empty tables using INSERT ... SELECT
with each of these engines:
- InnoDB row_format=compressed (from the InnoDB plugin)
- InnoDB row_format=Compact
- InnoDB row_format=Redundant
- MyISAM pack_keys=1
- MyISAM packed with myisampack (NOTE: these tables are readonly)
- PBXT
- Falcon
Here are …
[Read more]