June 19, 2013

Post: Benchmarking Percona Server TokuDB vs InnoDB

buffer_size = 8M read_buffer_size = 1M read_rnd_buffer_size = 4M bulk_insert_buffer_size = 8M myisam_sort_buffer_size = 8M myisam_max_sort_file_size = 10G #myisam_max_extra_sort_file_size

Post: Virident vCache vs. FlashCache: Part 2

…look solely at vCache performance under some different sets of MySQL configuration parameters. For example, given that …size = 64M server­id = 101 key_buffer_size = 8M read_buffer_size = 1M read_rnd_buffer_size = 4M bulk_insert_buffer_size = 8M myisam_sort_buffer_size = 8M myisam_max_sort_file_size

Post: Ultimate MySQL variable and status reference list

MySQL manual, especially the …bulk_insert_buffer_sizeblogpercona.commanual Bytes_receivedblogpercona.commanual Bytes_sentblogpercona.commanual character_set_clientblogpercona.commanual character_set_client_handshakeblogpercona.commanual character_set_connectionblogpercona.commanual character_set

Post: MySQL Server Variables - SQL layer or Storage Engine specific.

bulk_insert_buffer_size – Used by MyISAM tables only to optimize bulk inserts (multiple value inserts). Really helps if you have really bulk inserts 100-1000+ values per single insert

Post: MySQL Server Memory Usage

buffer_size, query_cache_size. If you’re using MyISAM seriously you can also add the size of Operation System cache you would like MySQLbulk inserts may allocate bulk_insert_buffer_size bytes of memory if done to MyISAM tables. myisam_sort_buffer_size

Post: Aligning IO on a hard disk RAID – the Benchmarks

… IO alignment, not different MySQL configurations, I didn’t try out different MySQL versions or settings. Moreover, I have …size = 16M max_heap_table_size = 64M thread_cache_size = 32 query_cache_size = 0 tmp_table_size = 64M key_buffer_size = 8M bulk_insert_buffer_size = 8M myisam_sort_buffer_size

Comment: When is it a time to upgrade memory ?

bulk_insert_buffer_size=8M # Innobd Tuning #innodb_force_recovery=2 innodb_thread_concurrency=2 innodb_file_per_table=1 innodb_doublewrite=0 # Set buffer pool size…file size to about 25% of the buffer pool size innodb_log_group_home_dir = /mnt/log_mysql innodb_log_file_size=1G innodb_log_buffer_size

Comment: MySQL Server Memory Usage

buffer_size = 8M bulk_insert_buffer_size = 8M query_cache_limit = 254M query_cache_size = 254M query_cache_type = 1 query_prealloc_size = 65536 query_alloc_block_size

Post: Predicting how long data load would take

…back in a binary form. MySQL Configuration Different storage engines have different settings which need to be set for optimal load speed. Depending on load type MyISAM may benefit from bulk_insert_tree_size increase myisam_sort_buffer_size or key_buffer_size increase…

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

…the InnoDB buffer pool for my 5.6 instance is 128MB – smaller than the size of… bulk insert performance. At the very bottom, the page claims that you can speed up bulk loading… mysql> set global innodb_ft_aux_table=’test/dir_test_innodb’; mysql> set global innodb_optimize_fulltext_only=1; mysql>…