Backup storage pool

shamim

ADSM.ORG Member
Joined
Mar 14, 2018
Messages
26
Reaction score
0
Points
0
I am copying backup data to offsite pool, how to know how much data copied, how much data left
 
There's no real easy way. Q PROC and Q STG, might give you an idea. Also if you know what your client ingest was the night before, that would help too.

In an ideal environment, all your nightly backup would go to a disk pool, you then do your backup stgpool, and them migrate from disk to tape. So, when backup stgpool runs, everything in the disk pool needs to go to the copy pool. So the current occupancy of the disk pool is how much you need to copy, Q PROC will tell you how much has been copied already. However, if your diskpool fills up at night and overflows to tape, then all bets are off with that method.

However, if you know your clients backed up 2.8 TB for example the night before, then that's in theory how much BACKUP STGPOOL would need to copy.
 
Look at the stgpools. Add up all those have a copy pool, and see how many files off you are.

Protect: TSM1>select stgpool_name,sum(num_files) from occupancy group by stgpool_name

STGPOOL_NAME Unnamed[2]
-------------------------------- ---------------------
BACKUPPOOL 76741
XX-CP 64202939
XX-CP-OLD 137199978
XX-LTO6 146121426
XX-META 8963040
TOD 7552797
 
Back
Top