Reconfigure Pending, Stuck, In Progress
vRA7 has a little habit of leaving tasks in a pending state this is how to deal with them.
https://kb.vmware.com/s/article/71246
Perhaps you aren't aware of a problem this is causing your users
Try looking for all tasks that are running or specific states using these SQL queries
SELECT CurrentTask FROM dbo.VirtualMachine WHERE CurrentTask != NULL
SELECT CurrentTask FROM dbo.VirtualMachine WHERE CurrentTask = 'Reconfigure failed, waiting to retry'
SELECT CurrentTask FROM dbo.VirtualMachine WHERE CurrentTask = 'Reconfigure pending'
Clear the tasks and let the users retry
UPDATE dbo.VirtualMachine SET CurrentTask = NULL WHERE CurrentTask = 'Reconfigure failed, waiting to retry'
UPDATE dbo.VirtualMachine SET CurrentTask = NULL WHERE CurrentTask = 'Reconfigure pending'
Kommentarer
Legg inn en kommentar