939fa2c0ff
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
7 lines
265 B
YAML
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.
|