Status
Not open for further replies.

bhanuprasad1981

Active Member
439
2009
61
0
any one know any good mysql hotcopy scripts which can run by cron , i have large databses around 20 gb dumping them takes really long time killing all sites on server :(
 
10 comments
Base 20 GB requires a special approach to support and storaging. Maybe you can reduce size your database. But in any case it is better to use storage engine with fewer locks, such as InnoDB.
 
Have you considered using an SSD drive to host your databases? That way you'll have better disk IO throughput and it should have a relatively low impact on the server overall.
 
As a variant you need change server with RAID 10 or SSD. It is much improve disk I/O. With bases of this size is a significant improvement.
 
best way to approach this is to use a script like bigdump that wont upload but download and make it do like each database will dump at a certain amount of mb or gb then do a continue on script...

Basicly something that can dump partial dumps of each database to do multiple dumps then join the dumps
 
Status
Not open for further replies.
Back
Top