With tape co-location available now you can optimizes the tape usage in case you have many small protection groups. The backup to tape will backup multiple protection group on the same tape depending on the backup strategy you configured and consideration on "TapeWritePeriodRatio" and "ExpiryToleranceRange".
- Open DPM Management Shell.
Set-OptimizeTapeUsage to True using the Set-DPMGlobalProperty cmdlet.
Set-DPMGlobalProperty -DPMServerName <name of DPM server> -OptimizeTapeUsage $True
The expiry date of the current dataset should fall in between the following dates:
Upper bound: furthest expiry date among all the datasets on the tape - (furthest expiry date among all the datasets on the tape - current date) * ExpiryToleranceRange
Lower Bound: furthest expiry date among all the datasets on the tape + (furthest expiry date among all the datasets on the tape - current date) * ExpiryToleranceRange.
Current time should be less than first backup time of the dataset on the media + TapeWritePeriodRatio * RetentionRangeOfFirstDataset.
TapeWritePeriodRatio
TapeWritePeriodRatio
It is a global property for the DPM which needs to be set using DPM CLI command. Here is the command to set it
Set-DPMGlobalProperty –DPMServerName <dpm server name> -TapeWritePeriodRatio <fraction>WritePeriodRatio indicates the number of days for which data can be written on to a tape as a ratio of the retention period of the first data set written to the tape.
WritePeriodRatio value can be between 0.0 to 1.0
Default value is 0.15 (i.e. 15%)