Hi
We have DPM 2012 R2 installed with a 8TB iSCSI disk attached. Due to us running out of space we decided to add another 10TB iSCSI disk to the storage pool and use MigrateDatasourceDataFromDPM.ps1 to migrate all the data from the 8TB to the 10TB disk. Seemed straight forward but halfway through the migration DPM ran out of space on the 10TB disk, very odd as we are only copying 8TB to a 10TB disk.
My question is how do I find out what protection group data hasnt been moved and what is left to move? Basically what data is on what disk?
Below is the PowerShell I used and the error returned.
PS C:\Program Files\Microsoft System Center 2012\DPM\DPM\bin> $disk = Get-DPMDis
k -DPMServerName OurDPMServer
PS C:\Program Files\Microsoft System Center 2012\DPM\DPM\bin> ./MigrateDatasourc
eDataFromDPM.ps1 -DPMServerName OurDPMServer -Source $disk[0] -Destination $disk
[1]
Set-ProtectionGroup : The allocation of disk space for storage pool volumes
failed because there is not enough unallocated disk space in the storage pool.
(ID: 358)
Add more disks to the storage pool or reduce the volume size requirement.
At C:\Program Files\Microsoft System Center
2012\DPM\DPM\bin\MigrateDatasourceDataFromDPM.ps1:111 char:3
+ Set-ProtectionGroup $mpg
+ ~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Set-DPMProtectionGroup], DlsE
xception
+ FullyQualifiedErrorId : NotEnoughFreeSpace,Microsoft.Internal.Enterprise
Storage.Dls.UI.Cmdlet.ProtectionCmdLets.CommitProtectionGroup
Set-ProtectionGroup : Non VSS Datasource Writer has recently been migrated.
You cannot migrate Non VSS Datasource Writer again until the recovery points
on the previous replica volume are available. (ID: 31224)
At C:\Program Files\Microsoft System Center
2012\DPM\DPM\bin\MigrateDatasourceDataFromDPM.ps1:111 char:3
+ Set-ProtectionGroup $mpg
+ ~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Set-DPMProtectionGroup], DlsE
xception
+ FullyQualifiedErrorId : ChainedMigrationError,Microsoft.Internal.Enterpr
iseStorage.Dls.UI.Cmdlet.ProtectionCmdLets.CommitProtectionGroup
Remove-DPMDisk : Disk 1 cannot be removed from the storage pool because it
contains storage pool volumes. (ID: 355)
At C:\Program Files\Microsoft System Center
2012\DPM\DPM\bin\MigrateDatasourceDataFromDPM.ps1:113 char:2
+ Remove-DPMDisk $Source
+ ~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Remove-DPMDisk], InvalidDiskE
xception
+ FullyQualifiedErrorId : DiskContainsSpmVolumes,Microsoft.Internal.Enterp
riseStorage.Dls.UI.Cmdlet.RemoveDPMDisk
PS C:\Program Files\Microsoft System Center 2012\DPM\DPM\bin>