May 22, 2012

Comment: Benchmarking single-row insert performance on Amazon EC2

Aaron, No particular reasons, it doesn’t matter if you have 4 1G or 2 2GB log files, as they are all concatenated together by InnoDB and written to in a circular fashion.

Comment: Benchmarking single-row insert performance on Amazon EC2

@Time Callaghan, I did not test with innodb_flush_log_at_trx_commit=1 because the durability requirements are not that stringent. And following is how I invoked iiBench: iibench -T $tbl_name -D iiBench -r 200000000 -M 1 -s 1000000 -t 100000 -I 1 -a -S

Comment: Benchmarking single-row insert performance on Amazon EC2

… first I’d like to note that this experiment isn’t really running the iiBench problem. The point of iiBench problem… to measure the cost of index maintenance. This experiment isn’t measuring the cost of index maintenance. Transaction-id is auto… new one. (If I read your graph correctly, you didn’t graph the performance on the first 100M rows). The minimum…

Comment: Create 3 nodes XtraDB Cluster in 3 minutes

This script doesn’t actually run on Redhat 6.2

Comment: Benchmarking single-row insert performance on Amazon EC2

This benchmark doesn’t test the IO performance of EBS though as you’re not flushing to disks on each commit. What numbers do you get when you set innodb_flush_log_at_trx_commit to 1?

Comment: Percona Replication Manager, a solution for MySQL high availability with replication using Pacemaker

….04 LTS) the pacemaker mysql plugin (ocf:heartbeat:mysql) doesn’t work, because since mysql 5.5 the statement “CHANGE MASTER…

Comment: Announcement of Percona XtraDB Cluster 5.5.20 GA release

… go for example default_storage_engine, query_cache_size, e.t.c…. Is it something built in or we just don’t need to define it for the cluster. I am new …

Comment: SHOW INNODB STATUS walk through

… the innodb (Standard, Lock,Tablespace,Table) and the server doesn’t report the data as described every 15 seconds instead it doesn’t create any row at all. How can that be, what…

Comment: Joining many tables in MySQL - optimizer_search_depth

Bartosz, You are right this is due to an optimizer inefficiency. But till the time the optimizer is not efficient enough we would have to use workarounds. In fact hints tend to be used a lot because although mostly optimizer makes good choices but sometimes it doesn’t.

Comment: How to convert MySQL's SHOW PROFILES into a real profile

I wasn’t aware of that problem. Maybe there is a bug filed on bugs.mysql.com that will shed more light on workarounds.