June 19, 2013

Comment: Benchmarking Percona Server TokuDB vs InnoDB

… of InnoDB throughput down to ~1500 insert/sec (and counting) while TokuDB remained steadily around 20000 insert/sec. I inserted around 100Million rows… Xeon X5650 @2.7GHz, 96GB of RAM and a very fast LSI MegaRaid backed storage with SSD Cache. Aurimas worked on…

Post: Benchmarking Percona Server TokuDB vs InnoDB

… with 1bln of rows on this SSD, and projected InnoDB performance on …fast inserts, but it is suitable for range selects by `id`. However it will interesting how both InnoDBinnodb_use_native_aio=0 #not innodb options (fixed) port = 3306 back_log = 50 max_connections = 2000 max_prepared_stmt_count

Post: Virident vCache vs. FlashCache: Part 2

… were conducted with approximately 78GiB of data (32 tables, 10M rows each) and a 4GiB buffer pool. The cache devices were…_commit = 1 innodb_log_file_size = 1G innodb_log_files_in_group = 2 innodb_purge_threads = 1 innodb_fast_shutdown = 1 #not innodb options (fixed) back_log = 50 wait_timeout = 120 max_connections = 5000 max_prepared_stmt_count

Post: MySQL Users Conference - Innodb

… days as Innodb user when I found out ALTERing Innodb tables may take a lot of time. Fast Index creation will allow Innodb to build indexes by sorting rather by row by row…’m not sure if Heikki will find a way to count exact number of auto increment values needed or if we…

Post: InnoDB Full-text Search in MySQL 5.6 (part 1)

InnoDB FTS blazingly-fast, …innodb_ft_config; +—————————+———+ | KEY | VALUE | +—————————+———+ | optimize_checkpoint_limit | 180 | | synced_doc_id | 1028261 | | last_optimized_word | | | deleted_doc_count | 0 | | total_word_count…of rows in I_S.innodb

Post: InnoDB: look after fragmentation

count(distinct username) | +—————————+ | 5903053 | +—————————+ 1 row in set (2 min 8.92 sec) mysql> SHOW STATUS LIKE ‘Innodb_scan_pages%’; +——————————+——-+ | Variable_name | Value | +——————————+——-+ | Innodb

Post: SHOW INNODB STATUS walk through

… counters – “reservation count” and “signal count” show how actively innodb uses internal sync array …as number of locked rows – there are normally many rows for each lock …writes these logs writes are pretty fast. ———————- BUFFER POOL AND MEMORY ———————- Total memory…

Post: Extending Index for Innodb tables can hurt performance in a surprising way

…) ENGINE=InnoDB AUTO_INCREMENT=6029313 DEFAULT CHARSET=latin1 mysql> select count(*) from idxitest where a=5 and b=5; +———-+ | count(*) | +———-+ | 60434 | +———-+ 1 row …. Application also had another query which previously ran so fast it hardly could be noticed. It however became a …

Post: Shard-Query EC2 images available

…following row count (the first number is wall time, the second exec time, the third parse time). $ echo “select count(*) …innodb-open-files=1000 innodb_fast_checksum innodb-purge-threads=1 innodb-read-ahead=linear innodb-read-ahead-threshold=8 innodb-read-io-threads=16 innodb-recovery-stats innodb

Post: InnoDB vs MyISAM vs Falcon benchmarks - part 1

… to retrieve rows (more details with Jim Starkey’s comments in Part 2). There MyISAM shows bad scalability with increasing count of… bad for Falcon. InnoDB is better than MyISAM by 87% in case with 4 threads but drops down very fast. READ_PK… $tableName The hardest query performs a scan of all million rows. InnoDB is better than MyISAM by ~30% with 4-16 threads…