1
I’ve been observing that always after running mysqldump, the server’s free memory gets very low and is not released right away.
The command I’m using is
mysqldump --default-character-set=latin1 --add-drop-table --single-transaction basededados1 > backup.sql
My tables are in Innodb.
I need to add some command to free the memory when mysqldump is over?
Appears to be a bug mysql. What is your version of mysql?
– lazyFox
@lazyFox Is a RDS on Amazon, version 5.6.40. Using single-transaction is ok right?
– Claytinho
This parameter should have no influence, but for consciousness discharge you can always test with and without the parameter to see if the results oscillate in memory usage.
– lazyFox