…MySQL is troubleshooting memory usage. The problem usually starts like this – you have configured MySQL to use reasonable global buffers, such as innodb… close connection MySQL can clean them up. Killing connections (or stopping related applications) and observing whenever memory usage shrinks can …
Post: Reasons for run-away main Innodb Tablespace
…caused your system tablespace size to explode – they will shrink to the normal size and all what you have… running Percona Server the following can be helpful: mysql> select * from innodb_rseg; +———+———-+———-+———+————+———–+ | rseg_id | space_id | zip_size | page…
Post: MySQL-Memcached or NOSQL Tokyo Tyrant - part 1
…Using this application I can then compare using MySQL to using MySQL + Memcached, and then to other solutions like … sizes tend to always grow and very rarely shrink. Which leads to a challenge faced by almost …, 2GB, and 4GB. For these tests I left Innodb with a 256M buffer pool, or roughly with 9…
Post: 10+ Ways to Crash or Overload MySQL
… using mysql_stmt_send_long_data call – Server buffers such data until you have executed prepared statement. Innodb Table Cache Leak – Innodb never shrinks its internal table cache (data dictionary) so by creating and accessing large amount of Innodb tables…
Post: High-Performance Click Analysis with MySQL
… me to my next point: Use InnoDB Assuming that you will use the stock MySQL server, InnoDB is usually your best bet. (Actually… InnoDB/XtraDB tables… Optimize For I/O It is pretty much inevitable: if you do this kind of data processing in MySQL… there are indexes other than the primary key, we can shrink the primary key’s width: create table ads_by_day…
Post: MySQL Blob Compression performance benefits
…often makes sense to keep it compressed. Unfortunately MySQL does not provide compressed BLOB/TEXT columns (I… data size and performance gains, especially for Innodb tables. With Innodb tables BLOB gets its own page (allocated… how many rows you will be able to shrink down so they fit back to the page…
Comment: MySQL File System Fragmentation Benchmarks
… really dangerous ! Because there is a “bug” in MySQL InnoDB which don’t shrink the file ibdata1 after a DROP Database without dropping the Table – If you have the defalut setting and not innodb… for a production enviroment…. http://crazytoon.com/2007/04/03/mysql-ibdata-files-do-not-shrink-on-database-deletion-innodb/ best regards gregor
Comment: Choosing innodb_buffer_pool_size
… recently upgrade to mysql 5.5.8 @ freebsd 7.1. the main db is innodb, myisam is used for the mysql-system-tables(small-sized). the production-innodb-database allocates now of about… dump is about 19GB big. i know that innodb – ibdata – files will never shrink, so i have to drop and import the…

