You can force-trigger storage DRS recommendations (and possible subsequent storage vMotions) through PowerCLI.
Run the snippet below, replacing the value of $dscName to match the name of the datastore cluster you wish to trigger the DRS recommendation on:
$dscName = 'DatastoreCluster1' $dsc = Get-View -ViewType StoragePod -Filter @{'Name'=$dscName} $si = Get-View ServiceInstance $storMgr = Get-View -Id $si.Content.StorageResourceManager $storMgr.RefreshStorageDrsRecommendation($dsc.MoRef) $dsc.UpdateViewData() if($dsc.PodStorageDrsEntry.Recommendation){ $dsc.PodStorageDrsEntry.Recommendation | %{ $storMgr.ApplyStorageDrsRecommendationToPod_Task($dsc.MoRef,$_.Key) } }
« ‹ | December 2024 | › » | ||||
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |