Replica disk threshold exceeded, or Recovery Point Volume threshold exceeded
Great!
Now what?
Well, if you have a new DPM server and not a lot of protection groups created, and you haven’t been protecting anything much, you can just click on the link in the warning message that says “Allocate more disk space for replica…” That pulls up a pretty window that looks like the one below:
So you go ahead an make the number in the “Replica Volume” field a little bigger, hit ok and go on about your business. Unless..
Sometimes you may need to go and use DISKPART to manually add space to the volume. If you try the above method, and you get a failed message instead of success, you are either out of disk space, or it could be that you have more than one disk on your DPM server and one of the disks becomes full. In order to extend the volume onto another disk, you have to use DISKPART. DPM (at this version) won’t do it for you.
- Open a command prompt (run as administrator if you are using a 2008 Server for your DPM server) and type “diskpart”.
- Type “List Volume” at the prompt.
- Right click and “select all” then enter to copy the output to the clipboard
- Paste it in notepad so you can do a search and search for the Data Source
- You should see a line similar to this:
Volume 534 DPM-Prolo NTFS Simple 2050 MB Healthy
C:\Program Files\Microsoft DPM\DPM\Volumes\Replica\SQL2.domain.com\ SqlServerWriter\PrologPilot\
Volume 535 DPM-Prolo NTFS Simple 2050 MB Healthy
C:\Program Files\Microsoft DPM\DPM\Volumes\DiffArea\SQL2.domain.com\ SqlServerWriter\PrologPilot\
Volume 536 DPM-Non VSS NTFS Simple 1540 MB Healthy
C:\Program Files\Microsoft DPM\DPM\Volumes\Replica\quick1.domain.com\Non VSS Datasource Writer\Computer\SystemState\SystemState
- The volume number comes before what it is describing and there are 2 for each protected object. A Replica volume and a DiffArea. The replica volume is a copy of the data as it is on the protected member. The DiffArea is where the recovery points are stored. The “Non VSS Datasource Writer” is system state in the example.
- You should see a line similar to this:
- At the DISKPART> prompt type “select volume” and the volume number i.e. : select volume 534
- If you want to see the details about the disk, you can type detail volume and it gives an output similar to:
DISKPART> detail volume
Disk ### Status Size Free Dyn Gpt
——– ———- ——- ——- — —
* Disk 2 Online 2560 GB 356 GB * *Read-only : No
Hidden : No
No Default Drive Letter: Yes
Shadow Copy : No
Dismounted : No
BitLocker Encrypted : NoVolume Capacity : 1030 MB
Volume Free Space : 186 MB - In order to increase the space for the Replica volume you would type: EXTEND SIZE=1024 DISK=2. This would extend the selected volume by 1 GB (1024 MB) on DISK 2.
- Now you have to go back in and tell DPM that you extended the volume. (I believe it may figure it out on its own eventually, but I prefer to get the warning cleared up sooner rather than later, so I go update DPM.
Note: Each time you use DISKPART, you are likely to see different numbers for the volumes. I haven’t looked into what that is, but I do know that the system volume is always one of the last in the list. For that reason I recommend that you always view detail volume after you select it, to make sure you are seeing the volume you intend to work with.