From: Konstantin Osipov <kostja@tarantool.org>
To: tarantool-patches@freelists.org
Subject: [tarantool-patches] Re: [PATCH v2 05/11] vinyl: implement quota wait queue without fiber_cond
Date: Sat, 29 Sep 2018 08:05:31 +0300 [thread overview]
Message-ID: <20180929050531.GI32712@chai> (raw)
In-Reply-To: <2144ee719cddf90f43389ebfb9979a2b4c5ee478.1538155645.git.vdavydov.dev@gmail.com>
* Vladimir Davydov <vdavydov.dev@gmail.com> [18/09/28 21:00]:
> Using fiber_cond as a wait queue isn't very convenient, because:
> - It doesn't allow us to put a spuriously woken up fiber back to the
> same position in the queue where it was, thus violating fairness.
> - It doesn't allow us to check whether we actually need to wake up a
> fiber or it will have to go back to sleep anyway as it needs more
> memory than currently available.
> - It doesn't allow us to implement a multi-queue approach where fibers
> that have different priorities are put to different queues.
>
> So let's rewrite the wait queue with plain rlist and fiber_yield.
Maybe you could factor out this change into an abstraction in fiber.[hc]?
Or fix fiber_cond to be fair?
>
> @@ -92,7 +91,17 @@ vy_quota_check_limit(struct vy_quota *q)
> static void
> vy_quota_signal(struct vy_quota *q)
> {
> - fiber_cond_signal(&q->cond);
> + if (!rlist_empty(&q->wait_queue)) {
> + struct vy_quota_wait_node *n;
> + n = rlist_first_entry(&q->wait_queue,
> + struct vy_quota_wait_node, in_wait_queue);
> + /*
> + * No need in waking up a consumer if it will have
> + * to go back to sleep immediately.
> + */
> + if (vy_quota_may_use(q, n->size))
> + fiber_wakeup(n->fiber);
> + }
> }
--
Konstantin Osipov, Moscow, Russia, +7 903 626 22 32
http://tarantool.io - www.twitter.com/kostja_osipov
next prev parent reply other threads:[~2018-09-29 5:05 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-28 17:39 [PATCH v2 00/11] vinyl: transaction throttling infrastructure Vladimir Davydov
2018-09-28 17:39 ` [PATCH v2 01/11] vinyl: add helper to start scheduler and enable quota on startup Vladimir Davydov
2018-09-29 4:37 ` [tarantool-patches] " Konstantin Osipov
2018-09-28 17:40 ` [PATCH v2 02/11] vinyl: factor load regulator out of quota Vladimir Davydov
2018-09-29 5:00 ` [tarantool-patches] " Konstantin Osipov
2018-09-29 11:36 ` Vladimir Davydov
[not found] ` <20180929114308.GA19162@chai>
2018-10-01 10:27 ` Vladimir Davydov
2018-10-01 10:31 ` Vladimir Davydov
2018-10-02 18:16 ` [tarantool-patches] " Konstantin Osipov
2018-10-03 8:49 ` Vladimir Davydov
2018-09-28 17:40 ` [PATCH v2 03/11] vinyl: minor refactoring of quota methods Vladimir Davydov
2018-09-29 5:01 ` [tarantool-patches] " Konstantin Osipov
2018-09-28 17:40 ` [PATCH v2 04/11] vinyl: move transaction size sanity check to quota Vladimir Davydov
2018-09-29 5:02 ` [tarantool-patches] " Konstantin Osipov
2018-09-28 17:40 ` [PATCH v2 05/11] vinyl: implement quota wait queue without fiber_cond Vladimir Davydov
2018-09-29 5:05 ` Konstantin Osipov [this message]
2018-09-29 11:44 ` [tarantool-patches] " Vladimir Davydov
2018-09-28 17:40 ` [PATCH v2 06/11] vinyl: enable quota upon recovery completion explicitly Vladimir Davydov
2018-09-29 5:06 ` [tarantool-patches] " Konstantin Osipov
2018-09-28 17:40 ` [PATCH v2 07/11] vinyl: zap vy_env::memory, read_threads, and write_threads Vladimir Davydov
2018-09-29 5:06 ` [tarantool-patches] " Konstantin Osipov
2018-09-28 17:40 ` [PATCH v2 08/11] vinyl: do not try to trigger dump in regulator if already in progress Vladimir Davydov
2018-09-28 17:40 ` [PATCH v2 09/11] vinyl: do not account zero dump bandwidth Vladimir Davydov
2018-10-12 13:27 ` Vladimir Davydov
2018-10-16 18:25 ` [tarantool-patches] " Konstantin Osipov
2018-10-17 8:44 ` Vladimir Davydov
2018-10-23 7:02 ` Konstantin Osipov
2018-09-28 17:40 ` [PATCH v2 10/11] vinyl: implement basic transaction throttling Vladimir Davydov
2018-09-28 17:40 ` [PATCH v2 11/11] vinyl: introduce quota consumer priorities Vladimir Davydov
2018-10-06 13:24 ` Konstantin Osipov
2018-10-08 11:10 ` Vladimir Davydov
2018-10-09 13:25 ` Vladimir Davydov
2018-10-11 7:02 ` Konstantin Osipov
2018-10-11 8:29 ` Vladimir Davydov
2018-10-03 9:06 ` [PATCH v2 00/11] vinyl: transaction throttling infrastructure Vladimir Davydov
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=20180929050531.GI32712@chai \
--to=kostja@tarantool.org \
--cc=tarantool-patches@freelists.org \
--subject='[tarantool-patches] Re: [PATCH v2 05/11] vinyl: implement quota wait queue without fiber_cond' \
/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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox