June 18, 2013

Post: A quest for the full InnoDB status

…– SHOW ENGINE InnoDB STATUS. On most occasions it works beautifully. The problems appear when you have …space occupied by that section of InnoDB status. Baron once wrote an article on how to do … is to create a special InnoDB table called innodb_monitor: CREATE TABLE innodb_monitor (a INT) ENGINE=…

Comment: Four ways to optimize paginated displays

… possible results because, as Baron pointed out: “For many apps I work on, that method would a) not work because there are too… load the site much more heavily than not having counter tables.” What can you say about this?

Post: Sphinx 0.9.8 is released just in time for OSCON 2008

…you probably already seen in a post by Baron, Sphinx Release 0.9.8 is finally out, just in… 70 new features corresponding to over 15 months of work. With zero in front it still looks like “beta”… using MySQL with best covering index (so no temporary table or sorting is needed for group by). Note that …

Comment: Hacking to make ALTER TABLE online for certain changes

Baron, thanks, indeed – changing/dropping default value using ALTER column works here. Even though I would expect MODIFY to work the same way… way to do it without a need to rebuild the table. You’re memory seems to be just fine!

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

…so instead of reinventing a flat tire, we decided, Baron Schwartz and I, to develop a solution using …Default is to run select count(*) on mysql.user table, so the user given should at least have…fairly easy task I believe. Of course, I’ll work with the maintainers of the Pacemaker resources agents…

Post: Finding your MySQL High-Availability solution – The questions

… supported only by MyISAM. The HA solutions that work well with MyISAM are “MySQL replication” and “Master-…expertise. The required expertise level is summarized in the table below. Expertise level MySQL replication Typical, average MySQL DBA …difference between an HA project and a DBA task. — Baron

Comment: UNION vs UNION ALL Performance

Baron, I think the most important thing here is the fact even UNION ALL uses temporary table, while it could simply be… – with MyISAM key limit index on all columns would not work for tables with long rows not to mention BLOBs

Comment: How to load large files safely into InnoDB with LOAD DATA INFILE

Hi Baron, that’s definitely a very helpful article! It is just … of the main loop. Then it works for me like a charm transferring the biggest table we have (160GB , varchar columns). Also…

Comment: The two even more fundamental performance metrics

Baron, You mention about response time vs service time and speak … may queue your request because it is doing some internal work at this point. if you take large enough magnifying glass… known queuing removed, which can be things like waiting on table locks, row level locks etc.

Comment: MySQL on Amazon RDS part 1: insert performance

Baron, I should note what with Insert the “working set” is not going to be the whole table, The Auto increment key insert…