Skip to main content

5 posts tagged with "Mysql"

View All Tags

Fixing Magento warning MySQL innodb_buffer_pool_size

· 2 min read
Stephan Hochdörfer
Head of IT Business Operations

While checking the Magento log files of a Magento instance we recently migrated, I came across the following MySQL warning:

Memory size allocated for the temporary table is more than 20% of innodb_buffer_pool_size. Please update innodb_buffer_pool_size 
or decrease batch size value (which decreases memory usages for the temporary table).
Current batch size: 417; Allocated memory size: 40032000 bytes; InnoDB buffer pool size: 134217728 bytes.

Faster MySQL Imports

This blog post might be outdated!
This blog post was published more than one year ago and might be outdated!
· One min read
Stephan Hochdörfer
Head of IT Business Operations

Importing larger database dumps can take a while, especially when foreign key checks are enabled. This slowdown happens because each foreign key reference must be verified by the database server.