…does not maintain checksum consistency during regular operations and is not ACID compliant. MyISAM and InnoDB may perform differently under concurrency, which …caching of data at the filesystem level. The InnoDB indexes were built using ALTER TABLE fast index creation (merge sort). For the MyISAM …
Post: The small improvements of MySQL 5.6: Duplicate Index Detection
…: GTID-based replication, InnoDB Fulltext, Memcached integration, a more complete performance schema, online DDL and several other InnoDB and query optimizer improvements. …-and the index will be created-, but we will get a warning (note severity, to be exact): mysql> ALTER TABLE test ADD INDEX (…
Post: Implementing SchemaSpy in your MySQL environment
… DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 CREATE TABLE `child_B` ( `id` int(10) unsigned…tables based on names, tables without indexes, columns flagged ‘nullable’ and ‘must be unique’ (woops!), single column tables, incrementing column names in tables, and tables…
Post: Percona Server 5.1.69-14.7 now available: A drop in replacement for MySQL
…schema definition for the User Statistics tables in INFORMATION_SCHEMA (CLIENT_STATISTICS, INDEX_STATISTICS, TABLE_STATISTICS, THREAD_STATISTICS, and USER_STATISTICS) led to …changed page tracking is enabled. Bug fixed #1184517. The INNODB_CHANGED_PAGES table couldn’t be queried if the log tracker …
Post: Percona Server 5.6.11-60.3 first Release Candidate now available
…schema definition for the User Statistics tables in INFORMATION_SCHEMA (CLIENT_STATISTICS, INDEX_STATISTICS, TABLE_STATISTICS, THREAD_STATISTICS, and USER_STATISTICS) led to …LSN range and thus does not need to read any bitmap files. Bug fixed #1184427. Query to the INNODB_CHANGED_PAGES table would…
Post: How to recover table structure from InnoDB dictionary
…table can have many secondary indexes, but only in the primary index we can find all fields. It must exist for any InnoDB table…
Post: MySQL and Percona Server in LinkBench benchmark
…= 1 innodb_log_buffer_size=128M innodb_max_dirty_pages_pct=80 innodb_file_format=barracuda innodb_file_per_table innodb_read_io_threads = 8 innodb_…5.5 and 5.6 loose-innodb_io_capacity_max = 15000 #Percona only innodb_adaptive_hash_index_partitions=8 innodb_buffer_pool_instances=1 innodb_adaptive…
Post: Benchmarking Percona Server TokuDB vs InnoDB
…) DEFAULT ” NOT NULL, PRIMARY KEY (id) ) CREATE INDEX k on sbtest$I(k) and tables sbtest$I_r10, sbtest$I_r100, sbtest$I…-up sum for 10, 100, 1000 records in the main table. and transactions for this workload are: $ID=monotonically increasing ID $K… about 2.8x better throughput, and on data size: InnoDB table: 58GB and 244.980.192 records TokuDB table: 15GB and 232.927.460 records So…
Comment: Benchmarking Percona Server TokuDB vs InnoDB
… is indexes. If you add multiple multi-column indexes the difference with InnoDB will be even more notable. Also it allows multiple clustering indexes that give additional huge win on selects. We used TokuDB in the past (versions 3.x and 4.x). It really shines on large tables and index scan like queries.
Post: Is Synchronous Replication right for your app?
… in Innodb is a single row (well, the PRIMARY KEY index entry for that row). This means typically on a single Innodb node…: You have users and groups in your application. These are maintained in separate tables and there also exists a users_groups table to define… in standalone Innodb, you might consider relaxing the fsync: set innodb_flush_log_at_trx_commit to something besides 1 and suddenly you…

