Skip to content

dveeden/mysql_supersize

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

Description

Try to insert a large row in MySQL.

Settings

MariaDB 10.1:

INSTALL PLUGIN blackhole SONAME 'ha_blackhole.so';

max_long_data_size=4294967295 # 4GB
max_allowed_packet=1073741824 # 1GB
innodb_log_file_size=20g      # 2x20GB = 40GB (insert must fit in 10%, this allows for 4G transactions)

MySQL 5.6:

max_allowed_packet=1073741824 # 1GB
innodb_log_file_size=5g       # 2x5GB = 10GB (insert must fit in 10%, this allows for 1G transactions)

Related Bugs

Oracle MySQL:

MariaDB:

Releases

No releases published

Packages

No packages published