…Tables MEMORY tables can take memory. There are implicit MEMORY tables which are allocated for query execution, which size can be controlled by tmp_table_size…tables you can create both as permanent and temporary. There is a max_heap_table_size variable which allows you to limit size of MEMORY tables…
Post: XtraDB/InnoDB CPU bound benchmarks on 24cores server
…max_allowed_packet=1M max_connections=3000 max_heap_table_size=64M max_prepared_stmt_count=1000000 query_cache_size=0 skip_grant_tables skip_locking sort_buffer_size=64K table…
Post: MySQL Server Variables - SQL layer or Storage Engine specific.
…tables in MyISAM format in “mysql” database. Plus HEAP/MEMORY tables are used for temporary tables…tmp_table_size This variable specifies maximum size implicit temporary table (created during query execution automatically) will grow as MEMORY table…
Post: New SpecJAppServer results at MySQL and Sun.
…=100 table_cache = 6000 read_rnd_buffer_size = 2M sort_buffer_size = 32k thread_cache = 16 query_cache_size = 0M thread_concurrency = 8 max_heap_table_size=200M log-output = FILE log-slow-queries=/tmp…
Post: How much overhead is caused by on disk temporary tables
… sec) mysql> set global max_heap_table_size=1000000000; Query OK, 0 rows affected (0.00 sec) mysql> set global tmp_table_size=1000000000; Query OK, 0… rows we have mysql> set max_heap_table_size=1000000000; Query OK, 0 rows affected (0.00 sec) mysql> set tmp_table_size=1000000000; Query OK, 0…
Post: TMP_TABLE_SIZE and MAX_HEAP_TABLE_SIZE
… configuration option “disk-tmp-table-size” introduced to set maximum expected on-disk temporary table size and avoid mix-up of tmp_table_size and max_heap_table_size ChangeSet@1.2358, 2007-01-03 14:45:26+03:00, ted@ted.mysql.internal +7 -0 BUG #4291: max_heap_table_size…
Comment: TMP_TABLE_SIZE and MAX_HEAP_TABLE_SIZE
… allocated tmp_table_size (in this case 512MB). My first question is: what is the difference between internal memory (tmp_table_size) and explicit memory (max_heap_table_size)? My… 1.largest 2.most frequent table size created on disk so that tmp_table_size (or is it max_heap_table_size, or both?) can be adjusted upwards in size?
Comment: TMP_TABLE_SIZE and MAX_HEAP_TABLE_SIZE
… +7 -0 BUG #4291: max_heap_table_size affects creation of disk-based temporary table fix: the new system variable memory_tmp_table_size is introduced; it stands now for the exact purpose the Manual says tmp_table_size used to do. tmp_table_size retains to…
Comment: Why MySQL could be slow with large tables ?
…_cache_size=60 key_buffer=750M join_buffer=10M max_heap_table_size=50M tmp_table_size=64M max_allowed_packet=16M table_cache=1800 record_buffer=10M sort_buffer_size=24M read_buffer_size=9M max_connect_errors…
Comment: Slow DROP TABLE
… and indexes), 16 – 20 GB in a few hundred MyISAM tables (out of 24 GB RAM on the machine). It is… data. 2) Most sorts are small or medium sized, we have max_heap_table_size=100M and tmp_table_size=100M in order to do these in memory…

