From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48985) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aBPgg-0006rA-NJ for qemu-devel@nongnu.org; Tue, 22 Dec 2015 11:21:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aBPgf-0007nS-M4 for qemu-devel@nongnu.org; Tue, 22 Dec 2015 11:21:22 -0500 References: <567206C0.6010403@redhat.com> <567855AA.8090606@redhat.com> From: John Snow Message-ID: <5679787B.7050607@redhat.com> Date: Tue, 22 Dec 2015 11:21:15 -0500 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [Qemu-block] Jobs 2.0 QAPI [RFC] List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alberto Garcia , Qemu-block Cc: Kevin Wolf , qemu-devel , Markus Armbruster On 12/22/2015 11:19 AM, Alberto Garcia wrote: > On Mon 21 Dec 2015 08:40:26 PM CET, John Snow wrote: >> However, better flexibility also plays a part. Say we have two devices: >> >> [drive0]: [X] --> [Y] --> [Z] >> [drive1]: [A] --> [B] >> >> In theory, we should be able to commit Z into Y into X while we >> simultaneously perform a backup from X to A. We definitely can't do that >> now. >> >> There may be some better use cases -- backups, fleecing and other >> read-only operations in particular have a high likelihood of being able >> to run concurrently with other operations. >> >> >> We definitely *can* just extend the old API to allow for these kinds of >> things, but since it represents a new paradigm of job manipulation, it's >> easier to just extend the block jobs api into a new "jobs" API and allow >> the system to expand to other subsystems. > > That sounds good to me. Since I'm trying to achieve something similar > with the block-stream operations (two or more ops in parallel) I'll try > to follow this new API closely. > > Thanks, > > Berto > Sure! Make sure you check out Jeff Cody's RFC on the new permissions system which will form the basis for allowing multiple jobs, too. --js