From: Hanna Reitz <hreitz@redhat.com>
To: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>,
qemu-block@nongnu.org
Cc: Kevin Wolf <kwolf@redhat.com>, qemu-devel@nongnu.org
Subject: Re: [PATCH v2 10/10] iotests/030: Unthrottle parallel jobs in reverse
Date: Mon, 15 Nov 2021 14:56:32 +0100 [thread overview]
Message-ID: <c5a9a63e-e859-f6fe-d694-2ad4134d8bdc@redhat.com> (raw)
In-Reply-To: <243c7e9a-88e4-ded3-721a-5f040aee36d5@virtuozzo.com>
On 12.11.21 17:25, Vladimir Sementsov-Ogievskiy wrote:
> 11.11.2021 15:08, Hanna Reitz wrote:
>> See the comment for why this is necessary.
>>
>> Signed-off-by: Hanna Reitz <hreitz@redhat.com>
>> ---
>> tests/qemu-iotests/030 | 11 ++++++++++-
>> 1 file changed, 10 insertions(+), 1 deletion(-)
>>
>> diff --git a/tests/qemu-iotests/030 b/tests/qemu-iotests/030
>> index 5fb65b4bef..567bf1da67 100755
>> --- a/tests/qemu-iotests/030
>> +++ b/tests/qemu-iotests/030
>> @@ -251,7 +251,16 @@ class TestParallelOps(iotests.QMPTestCase):
>> speed=1024)
>> self.assert_qmp(result, 'return', {})
>> - for job in pending_jobs:
>> + # Do this in reverse: After unthrottling them, some jobs may
>> finish
>> + # before we have unthrottled all of them. This will drain
>> their
>> + # subgraph, and this will make jobs above them advance
>> (despite those
>> + # jobs on top being throttled). In the worst case, all jobs
>> below the
>> + # top one are finished before we can unthrottle it, and this
>> makes it
>> + # advance so far that it completes before we can unthrottle
>> it - which
>> + # results in an error.
>> + # Starting from the top (i.e. in reverse) does not have this
>> problem:
>> + # When a job finishes, the ones below it are not advanced.
>
> Hmm, interesting why only jobs above the finished job may advance in
> the situation..
>
> Looks like something may change and this workaround will stop working.
>
> Isn't it better just handle the error, and don't care if job was just
> finished?
>
> Something like
>
> if result['return'] != {}:
> # Job was finished during drain caused by finish of already
> unthrottled job
> self.assert_qmp(result, 'error/class', 'DeviceNotActive')
Well. My explanation (excuse) is that I felt like this was the hack-ish
solution that I could have gone for from the start without understanding
what the issue is (and in fact it was the solution I used while
debugging the other problems). I went with `reversed()`, because that
really addresses the problem.
You’re right in that it only addresses the problem for now and there’s a
chance it might reappear. If we want to go with ignoring
DeviceNotActive errors, then I think we should at least query all block
jobs before the unthrottle loop and see that at least at one point they
were all running simultaneously.
I don’t really have a strong opinion. We can exchange this patch now
(though I’d rather not hold up the rest of the series for it), or have a
patch on top later, or, well, just keep it for now. I think the least
stressful option would be to just fix it up later.
Hanna
next prev parent reply other threads:[~2021-11-15 13:57 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-11-11 12:08 [PATCH v2 00/10] block: Attempt on fixing 030-reported errors Hanna Reitz
2021-11-11 12:08 ` [PATCH v2 01/10] stream: Traverse graph after modification Hanna Reitz
2021-11-11 12:08 ` [PATCH v2 02/10] block: Manipulate children list in .attach/.detach Hanna Reitz
2021-11-11 12:08 ` [PATCH v2 03/10] block: Unite remove_empty_child and child_free Hanna Reitz
2021-11-11 12:08 ` [PATCH v2 04/10] block: Drop detached child from ignore list Hanna Reitz
2021-11-11 12:08 ` [PATCH v2 05/10] block: Pass BdrvChild ** to replace_child_noperm Hanna Reitz
2021-11-12 12:06 ` Vladimir Sementsov-Ogievskiy
2021-11-11 12:08 ` [PATCH v2 06/10] block: Restructure remove_file_or_backing_child() Hanna Reitz
2021-11-12 12:12 ` Vladimir Sementsov-Ogievskiy
2021-11-11 12:08 ` [PATCH v2 07/10] transactions: Invoke clean() after everything else Hanna Reitz
2021-11-12 12:24 ` Vladimir Sementsov-Ogievskiy
2021-11-11 12:08 ` [PATCH v2 08/10] block: Let replace_child_tran keep indirect pointer Hanna Reitz
2021-11-12 15:27 ` Vladimir Sementsov-Ogievskiy
2021-11-11 12:08 ` [PATCH v2 09/10] block: Let replace_child_noperm free children Hanna Reitz
2021-11-12 16:10 ` Vladimir Sementsov-Ogievskiy
2021-11-15 13:04 ` Hanna Reitz
2021-11-16 8:16 ` Vladimir Sementsov-Ogievskiy
2021-11-11 12:08 ` [PATCH v2 10/10] iotests/030: Unthrottle parallel jobs in reverse Hanna Reitz
2021-11-12 16:25 ` Vladimir Sementsov-Ogievskiy
2021-11-15 13:56 ` Hanna Reitz [this message]
2021-11-16 8:20 ` Vladimir Sementsov-Ogievskiy
2021-11-11 17:25 ` [PATCH v2 00/10] block: Attempt on fixing 030-reported errors Kevin Wolf
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=c5a9a63e-e859-f6fe-d694-2ad4134d8bdc@redhat.com \
--to=hreitz@redhat.com \
--cc=kwolf@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=vsementsov@virtuozzo.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).