MySQL backups using mysqldump are about 1.5 GB and gradually getting larger. The last dump made the website inaccessible for ten minutes while the mysqldump was in progress. I assume the mysql server was totally busy with the mysqldump? Any suggestions? It's a windows server by the way.
Hi, try running mysqldump with --skip-lock-tables option if your tables are MyISAM. For InnoDB you can try --single-transaction
hi, if the option above isn't available, you also could setup a cronjob that will run on times that you sites has less visitors?