[Bug 1771928] Re: Disk usage leak on image import

Alex Kavanagh 1771928 at bugs.launchpad.net
Wed Jun 6 14:45:28 UTC 2018


** Changed in: nova-lxd (Ubuntu)
       Status: In Progress => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
OpenStack, which is subscribed to nova-lxd in Ubuntu.
https://bugs.launchpad.net/bugs/1771928

Title:
  Disk usage leak on image import

Status in nova-lxd:
  Fix Committed
Status in nova-lxd package in Ubuntu:
  Fix Committed

Bug description:
  Nova LXD driver contains a disk usage resource leak.
  Each disk image import from Glance leads to O(image_size) disk space lost in /tmp.
  Leak exists until nova-compute service is restarted as during restart open descriptors will be freed and disk space will reclaimed by OS.

  The reason is wrong usage of mkstemp in nova/virt/lxd/driver.py _sync_glance_image_to_lxd.
  The code use mkstemp to generate "random" filename to pass to glance API as destination path for downloaded image. But mkstemp also open file description to this file which is lost and never closed. As result even when this temporary file (downloaded image) is deleted file is still locked by nova-compute process.

  def _sync_glance_image_to_lxd(client, context, image_ref):
  ...
      try:
          image_file = tempfile.mkstemp()[1]
          # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
          # in code above we lost msktemp[0] of tuple which is open file handle
          # so file never be 'freed' until process finished
  ...
          IMAGE_API.download(context, image_ref, dest_path=image_file) 
  ....

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova-lxd/+bug/1771928/+subscriptions



More information about the Ubuntu-openstack-bugs mailing list