Merge "Fix other out of memory error for qemu-img convert" into stable/ussuri

This commit is contained in:
Zuul 2021-01-14 20:05:22 +00:00 committed by Gerrit Code Review
commit 5d37bf431f
3 changed files with 36 additions and 1 deletions

View File

@ -401,7 +401,8 @@ def convert_image(source, dest, out_format, run_as_root=False):
prlimit=_qemu_img_limits(),
use_standard_locale=True)
except processutils.ProcessExecutionError as e:
if ('Resource temporarily unavailable' in e.stderr
if (('Resource temporarily unavailable' in e.stderr
or 'Cannot allocate memory' in e.stderr)
and attempt < CONF.disk_utils.image_convert_attempts - 1):
LOG.debug('Failed to convert image, retrying. Error: %s', e)
# Sync disk caches before the next attempt

View File

@ -1097,6 +1097,29 @@ class OtherFunctionTestCase(base.IronicLibTestCase):
convert_call,
])
@mock.patch.object(utils, 'execute', autospec=True)
def test_convert_image_retries_alternate_error(self, execute_mock):
ret_err = 'Failed to allocate memory: Cannot allocate memory\n'
execute_mock.side_effect = [
processutils.ProcessExecutionError(stderr=ret_err), ('', ''),
processutils.ProcessExecutionError(stderr=ret_err), ('', ''),
('', ''),
]
disk_utils.convert_image('source', 'dest', 'out_format')
convert_call = mock.call('qemu-img', 'convert', '-O',
'out_format', 'source', 'dest',
run_as_root=False,
prlimit=mock.ANY,
use_standard_locale=True)
execute_mock.assert_has_calls([
convert_call,
mock.call('sync'),
convert_call,
mock.call('sync'),
convert_call,
])
@mock.patch.object(os.path, 'getsize', autospec=True)
@mock.patch.object(disk_utils, 'qemu_img_info', autospec=True)
def test_get_image_mb(self, mock_qinfo, mock_getsize):

View File

@ -0,0 +1,11 @@
---
fixes:
- |
Adds an additional error to look for in the ``qemu-img`` image conversion
retry logic to automatically retry if 'Cannot allocate memory' is
encountered, as ``qemu-img`` makes a number of memory allocation requests
and the most likely is upon creating the convesrsion thread resulting in
'qemu: qemu_thread_create_: Resource temporarily unavailable'
but other memory allocation fails can result in
'Failed to allocate memory: Cannot allocate memory'. Both types of errors
are now checked and automatically retried upon.