cinder/releasenotes/notes/verbose-online-migrations-94fb7e8a85cdbc10.yaml
Karthik Prabhu Vinod 939fa2c0ff Make cinder-manage online migrations more verbose
This makes the online_data_migrations command for cinder-manage a little
more verbose in what it is doing. Each time it is run, it will show you
all the migrations that need running and how many records remain for
each. Basically, you run this until you see all zeroes.

Sample output of $cinder-manage db online_data_migrations

+------------+-------+------+-----------+
| Migration  | Found | Done | Remaining |
+------------+-------+------+-----------+
| mock_mig_1 |   5   |  4   |     1     |
| mock_mig_2 |   6   |  6   |     0     |
+------------+-------+------+-----------+

Change-Id: I572bf2eb560698766d741bd2fd78c8b1067335d0
2017-03-24 16:57:40 +00:00

7 lines
265 B
YAML

---
features:
- The cinder-manage online_data_migrations command now prints a
tabular summary of completed and remaining records. The goal
here is to get all your numbers to zero. The previous execution
return code behavior is retained for scripting.