How do I measure daily adds/changes to a set of data, for backup purposes?
June 10, 2008 12:41 PM
Subscribe
How do I measure daily adds/changes to a set of data, for backup purposes?
So we just added another office; each has been doing its own backups and taking them offsite. We'd like to start backing up each office to the other office (over a VPN) as the offsite backup. I back you up, you back me up. They are in different regions, so that seems better than tapes floating around.
But I don't know how much we'll be able to deliver overnight over our pipes - the upload speed on both DSL lines is only 768kbps. I know it will take a long time to do the initial full backup; but how do I measure how big the daily incrementals will be?
I'm thinking of some way to measure the size of the data on a Monday, then track how many MB/GB is changed/added each day, track that over the course of a week or two, and use that to figure out if we can do this with our existing lines or if we need to invest in fatter pipes.
Anyone know of a way to do this without being a sysadmin/engineer etc? I can figure out most things, but I'm not going to be able to write my own scripts or whatever.
Suggestions?
posted by penciltopper to computers & internet (6 comments total)
1 user marked this as a favorite
In the case of plaintext, you could just do a diff on the old file and the new one to see what was changed. But if it's binary, you - to vastly oversimplify - will basically have to copy the entire file every time, instead of being able to copy a diff file. If your files are binaries, you'll definitely have to copy the entire changed file, even if you only made very minor changes to it.
posted by Tomorrowful at 12:50 PM on June 10, 2008