June 19, 2013

Post: Heikki Tuuri answers to Innodb questions, Part II

innodb_buffer_pool_size Q36: There have been several MySQL bugs opened about multi-core scalability (concurrent queries, autoincrement, concurrent inserts, instrumentation, etc.). Rather than

Post: MySQL 5.6 vs MySQL 5.5 and the Star Schema Benchmark

buffer pool. mysql> select * from information_schema.innodb_buffer_pool_stats\G *************************** 1. row *************************** POOL_ID: 0 POOL_SIZE: 8192 FREE_BUFFERS: 1024 DATABASE_PAGES: 7163 OLD_DATABASE_PAGES: 2624 MODIFIED_DATABASE

Post: SHOW INNODB STATUS walk through

Buffer pool hit rate 999 / 1000 This section shows Buffer pool activity and memory usage. You can see total memory allocated by Innodb (… buffer pool is sized well – if you have constantly a lot of pages free, it probably means your active database size is smaller than allocated buffer pool size

Post: New SpecJAppServer results at MySQL and Sun.

innodb_log_group_home_dir = /log/mysql/var/ innodb_checksums = 0 innodb_doublewrite = 0 innodb_buffer_pool_size = 5000m innodb_additional_mem_pool_size = 20M innodb_log_file_size = 1600M innodb_log_buffer_size = 16M innodb

Post: How innodb_open_files affects performance

than MyISAM tables. Though the difference can be related to the size of set of empty tables which is about 10 times smallerinnodb buffer pool which had to be flushed before recycling. First ran however was done with clean buffer pool

Post: Why you should ignore MySQL's key cache hit ratio

buffer hit ratio, and a host of smaller ones…we might make the database server faster overall,…InnoDB tuning? You might be wondering, what about InnoDB tuning? What is the best way to choose an innodb_buffer_pool_sizebuffer_size setting, but there are many unscientific approaches that are better than

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

… here is to note that the InnoDB buffer pool for my 5.6 instance is 128MB – smaller than the size of my DIR data. So, with… “new” InnoDB tablespace files in our database directory: -rw-rw—-. 1 mysql mysql 8632 Feb 20 15:54 dir_test_innodb.frm -rw… change to the default InnoDB settings for MySQL 5.6, and that was to change innodb_ft_min_token_size from the default…

Comment: COUNT(*) vs COUNT(col)

…col) may actually be a lot faster than count(*). Consider this example (restarting … buffer pool usage: Total memory allocated 589194920; in additional pool allocated 714496 Buffer pool size 32768 Free buffers 32332 Database… if there is a smaller secondary index on the table, innodb is smart enough …

Post: How Percona does a MySQL Performance Audit

databasessmaller thanInnoDB buffer pool is set to 22GB, it’s much easier to see 22GB than

Post: How much memory Innodb locks really take ?

…background – in Innodb row level locks are implemented by having special lock table, located in the buffer pool where small …), heap size 503104 So 503104 bytes are used to lock 1638400 rows, making it less than 3 bits … want to lock every row in your table/database which makes it even smaller problem…