Hi
Backup script is really cpu consuming. The rsync it does to move daily to weekly scripts and weekly to monthly is really a loss of cpu without really an advantage. I guess that not much can be done for the daily: files have to be gathered and copied. but for weekly and monthly backups a much better procedure, instead of a rsync, would be:
monthly:
rm -rf /backup/cpbackups/monthly
mv /backup/cpbackups/weekly /backup/cpbackups/monthly
weekly:
rm -rf /backup/cpbackups/weekly
mv /backup/cpbackups/daily /backup/cpbackups/weekly
Obviously the overhead for the server when deleting and renaming one folder is almost insignificant. while now it takes hours. And obviously it is important the order: daily backup should be done after creating the weekly.
Quel



LinkBack URL
About LinkBacks
Reply With Quote












