I am attempting to build myself a calculator that will help me estimate how much backup storage (hardware) I will need depending on the type of retention I assign to my backup jobs.
In other words, I have the following as a base sample. Depending on how I change the values, I’d like to develop some formulas to help me tell the bosses what kind of future investment they are looking at financially for backup storage.
Initial Data size: 10TB
Deduplication ratio (estimate on duplicate data): 50%
Incremental backups: 500GB DAILY
Daily Backup Retention: 30 days
Weekly Backup Retention: 4 Weeks
Monthly Backup Retention: 12 Months
Yearly Backup Retention: 7 Years
So my thinking on the formulas is as follows:
A = [Initial data – (Initial Data * Deduplication ratio) + Incremental backups]
B = Daily Backups
C = Weekly Backup
D = Monthly Backup
E = Yearly Backup
[[A*B] + [A*C] + [A*D} = [A*E]]
When I tried various formulas for the above, I did not account for the progressive nature of the data. As in, naturally some data will age off while the 500GB will grow. Overall, I’m just trying to estimate but I do need to account for the above and it seems to be above my excel skills in designing the formula.
Any assistance is appreciated.
Thanks.