We eagerly announce the release of: nova 27.5.1 This release is part of the antelope release series. The source is available from: https://opendev.org/openstack/nova Download the package from: https://tarballs.openstack.org/nova/ Please report issues through: https://bugs.launchpad.net/nova/+bugs For more details, please see below. 27.5.1 ^^^^^^ Bug Fixes * Fixes a regression for live migration on shared storage that was removing the backing disk and instance folder during the cleanup of a virtual machine post live migration. bug 2080436 for details. * Bug #2024258: Fixes an issue with performance degradation archiving databases with large numbers of foreign key related records. Previously, deleted rows were archived in batches of max_rows parents + their child rows in a single database transaction. It limited how high a value of max_rows could be specified by the user because of the size of the database transaction it could generate. Symptoms of the behavior were exceeding the maximum configured packet size of the database or timing out due to a deadlock. The behavior has been changed to archive batches of complete parent + child rows trees while limiting each batch when it has reached >= max_rows records. This allows the size of the database transaction to be controlled by the user and enables more rows to be archived per invocation of "nova-manage db archive_deleted_rows" when there are a large number of foreign key related records. (https://bugs.launchpad.net/nova/+bug/2024258) Changes in nova 27.5.0..27.5.1 ------------------------------ 1d788f1189 [doc]Fix the device_spec config doc about placement e8999f0264 Fix regression with live migration on shared storage cf08543ca1 hardware: Correct log 9367b93e92 Skip snapshot test when missing qemu-img 010acce606 libvirt: call get_capabilities() with all CPUs online 6c3d72f477 Fix PCI passthrough cleanup on reschedule 4ae8aa82d6 Functional test test_boot_reschedule_with_proper_pci_device_count fde9368dd7 Drop Fedora support 197b14d765 [CI] Replace deprecated regex 4c02c2d7b3 retry write_sys call on device busy 68b9934baa add functional repoducer for bug 2065927 c534be7e00 Disconnecting volume from the compute host fc54bc92b5 Separate OSError with ValueError a1fa92f0ab Added context manager for instance lock 75e4c86d90 database: Archive parent and child rows "trees" one at a time 8823da84e9 testing: Fix and robustify archive_deleted_rows test Diffstat (except docs and test files) ------------------------------------- .zuul.yaml | 58 ++--- .../instance-create-error.json | 4 +- nova/cmd/manage.py | 274 ++++++++++++--------- nova/compute/claims.py | 3 +- nova/compute/manager.py | 4 +- nova/conf/pci.py | 5 +- nova/db/main/api.py | 131 +++++++--- nova/exception.py | 8 + nova/filesystem.py | 55 ++++- nova/pci/manager.py | 4 +- .../functional/libvirt/test_pci_sriov_servers.py | 56 +++++ nova/virt/hardware.py | 4 +- nova/virt/libvirt/cpu/api.py | 6 +- nova/virt/libvirt/cpu/core.py | 12 +- nova/virt/libvirt/driver.py | 33 ++- .../notes/bug-2080436-568b03b5b5ba5760.yaml | 8 + ...e-performance-degradation-3fdabc43398149b1.yaml | 21 ++ 28 files changed, 832 insertions(+), 288 deletions(-)
participants (1)
-
no-reply@openstack.org