June 18, 2013

Post: What's required to tune MySQL?

…!) yesterday asking what would be needed to tune[1] a database for better performance. It is a question that I hear often… actually badly configured, you can hurt its performance significantly. Correcting these mistakes can correspondingly improve performance. But such mistakes are relatively few… see are not configuring the InnoDB buffer pool size or log file size, and not using InnoDB. If your server really hasn…

Post: How Percona does a MySQL Performance Audit

…are at this stage. Is it the current performance, future performance, scalability, ability to recover from disasters? … systems that are at any level of tuning, from completely untuned to a system that’… there are InnoDB tables whose .frm files exist but have been dropped from InnoDB, for example. (…

Post: InnoDB Full-text Search in MySQL 5.6: Part 2, The Queries!

… identical to the same query when performed against InnoDB data, OR that the results returned by InnoDB FTS will somehow be “better” (as… and MySQL 5.6.10 with no configuration tuning other than to set innodb_ft_min_token_size to 4 (rather than… search terms, and in this case, both MyISAM and InnoDB FTS performed identically and found it. I’m not really concerned about…

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

… 5.5.30 and MySQL 5.6.10 with no tuning whatsoever (with one exception that I’ll explain below) – the…’ll get to performance in the third installment. For now, the important number here is to note that the InnoDB buffer pool… bulk insert performance. At the very bottom, the page claims that you can speed up bulk loading into an InnoDB FT index…

Post: How Innodb Contention may manifest itself

… you can consider increasing innodb_sync_spin_loops to a higher number. It is worth to note fine tuning Innodb Contention with number of spin locks loops is something i would consider last resort tuning, the performance improvements it…

Page: Consulting for MySQL

…workload. Innodb Storage Engine Running transaction applications with MySQL ? Need help with deadlocks, understanding how Innodb locking works or having Innodb performance issues ? …implementing Full Text Search solution ? We can help with fine tuning MySQL build in Full Text Search indexing or help …

Post: Side load may massively impact your MySQL Performance

…. It is very typical to hear complains about MySQL interactive performance – serving simple standard web traffic is drastically impacted when some… makes workload extremely IO bound hence such drop in performance. The performance of mysqldump is impacted too because we now have 2… advanced tuning you might also look into changing how buffer pool is split into young and old sublists via innodb_old_blocks…

Post: InnoDB Flushing: a lot of memory and slow disk

… increase innodb_io_capacity and decrease innodb_max_dirty_pages_pct so as to have fewer dirty pages. But I call that tuningInnoDB will flush, and P is our page. So, as a result of how it works, instead of performing 1 random write, InnoDB will perform 8 random writes. I do not have a…

Post: The performance effects of new patches

…, in some extreme cases, it is worth to tune. The following parameters are added. innodb_read_ahead (default 3) This controls [enable… help the performance. * This test uses “innodb_read_ahead = 0″ (The both of read-ahead are disabled) “innodb_ibuf_contract_const = 50000″ “innodb_ibuf…

Post: How well does your table fits in innodb buffer pool ?

…_id = innodb_sys_tables.id JOIN innodb_index_stats ON innodb_index_stats.table_name = innodb_sys_tables.name AND innodb_sys_indexes.name = innodb_index… use this feature to tune buffer pool invalidation strategy, for example play with innodb_old_blocks_pct and innodb_old_blocks_time actually… recover. This tool can be also helpful for capacity planning/performance management. In many cases you would learn you need a…