Hi
I was try to run a backup of my database only using:
innobackupex --no-timestamp --databases="databasename" /backup/mysql
and if i am not wrong that uses the default ram 100mb value and it takes to finish the backup 18 minutes.
Then i run it using:
innobackupex --no-timestamp --use-memory=8G --databases="databasename" backup/mysql
and it takes exactly the same time 18 minutes.
Why i don’t get any speed increase of backup?
Thanks