Volume Migration Stuck in "Migrating" State #10801
-
problemWe initiated a volume migration from one primary storage to another. Although the migration started, the volume has remained in the "Migrating" state for the past four days. Additionally, a new volume creation is stuck in the "Creating" state. Although the job was canceled, the original volume still shows as "Migrating," and the new volume remains in "creating". To move forward, how can we update the status of the affected volume from "Migrating" to "Ready" in the database. versionsACS version: 4.19.1.3 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The good thing with migrations is that the existing volume does not get touched until there is successful migration completion. For the current active volume (check your vm to make sure) Update volumes For the one that failed Update volumes Then also check the install_path for the failed one as you may have to manually delete the file if partial file was moved. |
Beta Was this translation helpful? Give feedback.
The good thing with migrations is that the existing volume does not get touched until there is successful migration completion.
Without knowing why it was stuck, if your goal is to set the status correctly, you need to write manual update statements in the database.
For the current active volume (check your vm to make sure)
Update volumes
Set status=‘Ready’
Where I’d = x.
For the one that failed
Update volumes
Set status=‘Expunged’
Where I’d = y.
Then also check the install_path for the failed one as you may have to manually delete the file if partial file was moved.