… ? TEMP TABLES Current max_heap_table_size = 128 M Current tmp_table_size = 128 M Of 21559 temp tables, 44% were created on disk Perhaps you should increase your tmp_table_size and/or max_heap_table…
Post: Virident vCache vs. FlashCache: Part 2
… of data (32 tables, 10M rows each) and a 4GiB buffer pool. The cache devices were flushed to disk immediately prior to…=0 –percentile=95 \ –mysql-user=root –mysql-socket=/tmp/mysql.sock –mysql-table-engine=innodb \ –oltp-read-only=off run The base…_type = 0 ft_min_word_len = 4 thread_stack = 192K tmp_table_size = 64M serverid = 101 key_buffer_size = 8M read…
Post: Benchmarking Percona Server TokuDB vs InnoDB
…, but InnoDB can’t make 5h run. After 3h the disk is full, and InnoDB data size is about 210GB with… –test=insert_roll.lua –oltp-table-size=10000 –mysql-user=root –oltp-tables-count=32 –mysql_table_engine=tokudb –oltp_auto_inc=on…_type = 0 ft_min_word_len = 4 #default_table_type = InnoDB thread_stack = 192K tmp_table_size = 64M server-id = 10 #*** MyISAM Specific…
Post: Finding what Created_tmp_disk_tables with log_slow_filter
… number of temporary tables being created on disk. show global status like ‘Created_tmp%’ | Created_tmp_disk_tables | 91970 | | Created_tmp_files | 19624 | | Created_tmp_tables | 1617031 | Looking at… steady flow of queries creating disk based tables. mysqladmin ext -ri60 | Created_tmp_disk_tables | 74 | | Created_tmp_files | 3 | | Created_tmp_tables | 357 | Luckily this client was…
Post: When Does InnoDB Update Table Statistics? (And When It Can Bite)
… a large tables, this can affect your server especially if the random index dives had to be read from disk. Here is an example of SHOW TABLE STATUS FROM schema taking away a couple… Tmp_tables: 1 Tmp_disk_tables: 0 Tmp_table_sizes: 0 SET timestamp=1316767697; show table status from `db1`; As you can see db1 has about 294 tables and…
Post: Identifying the load with the help of pt-query-digest and Percona Server
…: 68 Tmp_tables: 0 Tmp_disk_tables: 0 Tmp_table_sizes: 0 # InnoDB_trx_id: F00 # QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk… 0 # Tmp tables 0 0 0 0 0 0 0 0 # Tmp disk tbl 0 0 0 0 0 0 0 0 # Tmp tbl size… 0 # Tmp tables 10 149 1 1 1 1 0 1 # Tmp disk tbl 30 149 1 1 1 1 0 1 # Tmp tbl size…
Post: TMP_TABLE_SIZE and MAX_HEAP_TABLE_SIZE
… conversion, whereas internal tables are: * If an internal table becomes too large, the server automatically converts it to an on-disk table. The size limit is determined by the value of the tmp_table_size system variable. * MEMORY tables are never converted to disk tables. To…
Post: How to find MySQL queries worth optimizing ?
… Rows_affected: 0 Rows_read: 0 # Bytes_sent: 213 Tmp_tables: 0 Tmp_disk_tables: 0 Tmp_table_sizes: 0 # InnoDB_trx_id: 12F14 SET timestamp=1347398285… Rows_affected: 0 Rows_read: 1 # Bytes_sent: 719 Tmp_tables: 0 Tmp_disk_tables: 0 Tmp_table_sizes: 0 # InnoDB_trx_id: 12F1D SET timestamp=1347398722…
Post: Ultimate MySQL variable and status reference list
…tmp_disk_tablesblogpercona.commanual Created_tmp_filesblogpercona.commanual Created_tmp…
Post: How much overhead is caused by on disk temporary tables
… or can be created on disk as MYISAM tables. Which one will be used depends on the allowed tmp_table_size and also by… disk MyISAM temporary table. What i decided to do is to see how much overhead do on disk temporary tables cause compared to MEMORY tables… linear dependence of table size, and it can get 100 times faster than MyISAM on disk table even in case temporary table is small…

