… individually Sysbench gives about 330 req/sec and mysqldump for large table completes in about 95 seconds. If we run them concurrently… innodb_old_blocks_time variable to some value will prevent important data to be pushed out of buffer pool. Lets repeat… can see in default configuration MySQL has buffer pool which can be easily washed away by large table scans or heavy batch jobs…
Post: Database problems in MySQL/PHP Applications
…. Using multiple tables gives some very important benefits – your data becomes managable, your ALTER TABLE or OPTIMIZE TABLE now locks small table for few seconds rather than giant 100GB table… loosing data etc. Read more in my Why MySQL Could be slow with Large Tables article. 5. The n+1 pattern This probably…
Post: MySQL EXPLAIN limits and errors.
… MySQL 5.0 with addition of greedy join the problem on looking at too many table join combinations in joins with very large tables is elevated, however there are still cases when it may take too long. Most practically important one is if Derived tables (selects in FROM clause) are used. MySQL will execute these subselects on…
Post: Finding your MySQL High-Availability solution – Replication
… known that with MySQL, altering a table means recreating the whole table and it is a blocking operations. Altering a large table may takes many hours. The trick here is to run the alter table… of MMM is its lack of fencing capability. It is important to stop all the connections to the failing master and…
Post: Auditing login attempts in MySQL
…important task on some scenarios. Unfortunately there are not too many audit capabilities in MySQL Community so the first option to audit MySQL…will have to deal with very large files on high loaded servers. … valuable information. It is important to mention that these tables are stored in INFORMATION…
Post: What's required to tune MySQL?
… expect to deliver huge wins. If MySQL is actually badly configured, you can…important factors, including the following: The hardware The server configuration The workload The queries The schema design (table…itself. This review can sometimes deliver large gains that go far beyond configuration alone….
Post: Testing MySQL column stores
… to do some testing on a large data set against two MySQL column-store storage engines. I’d … problem would be “select avg(char_column) from table” where the column contains a mix of ascii … probably wouldn’t happen in a real application. Importantly, I didn’t find significant defects in Infobright …
Post: Review of MySQL 5.6 Defaults Changes
… to over 5000 or use more than 5000 tables. There is also little “savings” in keeping this …based sorts. This means it makes it even more important to set this variable to higher values for …large etc referring to amounts of memory we have in the phones these days, I made in my Optimizing MySQL…
Post: Which Linux distribution for a MySQL database server? A specific point of view.
…but their install bases are large enough to mention them separately. Running MySQL won’t be much … improvements, however these days it is rarely important to MySQL users. If it is to you, …MySQL. By default it not only starts database, but also updates system tables (if needed), scans all tables …

