On Wed, Oct 16, 2013 at 11:53 AM, David Gerard dgerard@gmail.com wrote:
Does Wikimedia use InnoDB, Maria or something else as the database engine for its MariaDB servers?
InnoDB, mostly. For example:
[enwiki]> SELECT count(*) as num_tables, engine from information_schema.tables where table_schema = 'enwiki' group by engine; +------------+--------+ | num_tables | engine | +------------+--------+ | 166 | InnoDB | | 2 | MEMORY | +------------+--------+ 2 rows in set (0.00 sec)
-Chad