From: Vivek Goyal <vgoyal@redhat.com>
To: Liu Bo <bo.liu@linux.alibaba.com>
Cc: virtio-fs-list <virtio-fs@redhat.com>, Michey Mehta <mimehta@redhat.com>
Subject: Re: [Virtio-fs] [RFC] [PATCH] virtiofsd: Auto switch between inline and thread-pool processing
Date: Mon, 26 Apr 2021 15:10:58 -0400 [thread overview]
Message-ID: <20210426191058.GH1741690@redhat.com> (raw)
In-Reply-To: <20210426190315.GA114267@rsjd01523.et2sqa>
On Tue, Apr 27, 2021 at 03:03:43AM +0800, Liu Bo wrote:
> On Mon, Apr 26, 2021 at 07:39:54AM -0400, Vivek Goyal wrote:
> > On Sat, Apr 24, 2021 at 02:12:44PM +0800, Liu Bo wrote:
> > > On Fri, Apr 23, 2021 at 05:11:30PM -0400, Vivek Goyal wrote:
> > > > This is just an RFC patch for now. I am still running performance numbers
> > > > and see if this method of switching is good enough or not. I did one run
> > > > and seemed to get higher performance on deeper queue depths. There were
> > > > few tests where I did not match lower queue depth performance with
> > > > no thread pool. May be run to run variation.
> > > >
> > > > For low queue depth workloads, inline processing works well. But for
> > > > high queue depth (and multiple process/thread) workloads, parallel
> > > > processing of thread pool can benefit.
> > > >
> > > > This patch is an experiment which tries to switch to between inline and
> > > > thread-pool processing. If number of requests received on queue is
> > > > 1, inline processing is done. Otherwise requests are handed over to
> > > > a thread pool for processing.
> > > >
> > >
> > > I'm looking forward to the results showing how many requests would it
> > > beats the overhead of using thread pools.
> > >
> > > This is a good idea indeed, and the switch mechanism also applies to
> > > async IO framework like iouring.
> >
> > Hi Liubo,
> >
> > I have been thinking of using io_uring. Have you managed to make it work.
> > Do we get better performance with io_uring.
> >
> Hi Vivek,
>
> With fuse-backend-rs, I did some experiments using rust async
> framework and io_uring wrapper ringbahn, and my code is written to
> provide a few rust coroutines to serve fuse process loop.
>
> I tested the same 8k random read workload on three setups,
> a) single thread
> b) threads=4 multiple threads
> c) coroutines=4 async
>
> the performance tests showed some expected feedbacks, in terms of IO
> intensive workloads, "async" beats single thread, it comes with
> overheads though, it performs about 80% of "multiple threads".
>
> Note that the above tests were done with no limit of cpu/mem
> resources, by limiting cpu to 1, "async" performs the best given the
> async io kthreads were not limited.
So if number of cpus are not limited for virtiofsd, then async (c)
did not perform better than "multiple threads" (b)?
IOW, async performed better than multiple threads only if number
of cpus was limited to 1 for virtiofsd.
Did I understand it right?
>
> So it looks like all three setups have pros and cons, it'd be great if
> we can do switching between them on the fly.
Agreed. It probably will make sense to add support for async I/O
(probably using io_uring) and provide a knob to let user select
whatever I/O interface they want to use.
Vivek
>
> thanks,
> liubo
>
> > Thanks
> > Vivek
> >
> > >
> > > thanks,
> > > liubo
> > >
> > > > Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
> > > > ---
> > > > tools/virtiofsd/fuse_virtio.c | 27 +++++++++++++++++++--------
> > > > 1 file changed, 19 insertions(+), 8 deletions(-)
> > > >
> > > > Index: rhvgoyal-qemu/tools/virtiofsd/fuse_virtio.c
> > > > ===================================================================
> > > > --- rhvgoyal-qemu.orig/tools/virtiofsd/fuse_virtio.c 2021-04-23 10:03:46.175920039 -0400
> > > > +++ rhvgoyal-qemu/tools/virtiofsd/fuse_virtio.c 2021-04-23 10:56:37.793722634 -0400
> > > > @@ -446,6 +446,15 @@ err:
> > > > static __thread bool clone_fs_called;
> > > >
> > > > /* Process one FVRequest in a thread pool */
> > > > +static void fv_queue_push_to_pool(gpointer data, gpointer user_data)
> > > > +{
> > > > + FVRequest *req = data;
> > > > + GThreadPool *pool = user_data;
> > > > +
> > > > + g_thread_pool_push(pool, req, NULL);
> > > > +}
> > > > +
> > > > +/* Process one FVRequest in a thread pool */
> > > > static void fv_queue_worker(gpointer data, gpointer user_data)
> > > > {
> > > > struct fv_QueueInfo *qi = user_data;
> > > > @@ -605,6 +614,7 @@ static void *fv_queue_thread(void *opaqu
> > > > struct fuse_session *se = qi->virtio_dev->se;
> > > > GThreadPool *pool = NULL;
> > > > GList *req_list = NULL;
> > > > + int nr_req = 0;
> > > >
> > > > if (se->thread_pool_size) {
> > > > fuse_log(FUSE_LOG_DEBUG, "%s: Creating thread pool for Queue %d\n",
> > > > @@ -686,22 +696,23 @@ static void *fv_queue_thread(void *opaqu
> > > > }
> > > >
> > > > req->reply_sent = false;
> > > > -
> > > > - if (!se->thread_pool_size) {
> > > > - req_list = g_list_prepend(req_list, req);
> > > > - } else {
> > > > - g_thread_pool_push(pool, req, NULL);
> > > > - }
> > > > + req_list = g_list_prepend(req_list, req);
> > > > + nr_req++;
> > > > }
> > > >
> > > > pthread_mutex_unlock(&qi->vq_lock);
> > > > vu_dispatch_unlock(qi->virtio_dev);
> > > >
> > > > /* Process all the requests. */
> > > > - if (!se->thread_pool_size && req_list != NULL) {
> > > > - g_list_foreach(req_list, fv_queue_worker, qi);
> > > > + if (req_list != NULL) {
> > > > + if (!se->thread_pool_size || nr_req <= 2) {
> > > > + g_list_foreach(req_list, fv_queue_worker, qi);
> > > > + } else {
> > > > + g_list_foreach(req_list, fv_queue_push_to_pool, pool);
> > > > + }
> > > > g_list_free(req_list);
> > > > req_list = NULL;
> > > > + nr_req = 0;
> > > > }
> > > > }
> > > >
> > > >
> > > > _______________________________________________
> > > > Virtio-fs mailing list
> > > > Virtio-fs@redhat.com
> > > > https://listman.redhat.com/mailman/listinfo/virtio-fs
> > >
>
next prev parent reply other threads:[~2021-04-26 19:10 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-23 21:11 [Virtio-fs] [RFC] [PATCH] virtiofsd: Auto switch between inline and thread-pool processing Vivek Goyal
2021-04-24 6:12 ` Liu Bo
2021-04-26 11:39 ` Vivek Goyal
2021-04-26 19:03 ` Liu Bo
2021-04-26 19:10 ` Vivek Goyal [this message]
2021-04-25 2:29 ` [Virtio-fs] [External] " Jiachen Zhang
2021-04-26 15:11 ` Vivek Goyal
2021-04-26 17:40 ` Dr. David Alan Gilbert
2021-04-26 17:51 ` Vivek Goyal
2021-04-26 17:59 ` Dr. David Alan Gilbert
2021-04-28 13:40 ` Vivek Goyal
2021-04-26 17:34 ` [Virtio-fs] " Vivek Goyal
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=20210426191058.GH1741690@redhat.com \
--to=vgoyal@redhat.com \
--cc=bo.liu@linux.alibaba.com \
--cc=mimehta@redhat.com \
--cc=virtio-fs@redhat.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.