Re: Potential Large Performance Gain in WAL synching

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Curtis Faith <curtis(at)galtair(dot)com>
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Pgsql-Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Potential Large Performance Gain in WAL synching
Date: 2002-10-04 04:44:22
Message-ID: 200210040444.g944iMI08942@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Curtis Faith wrote:
> The method I propose does not result in any blocking because of writes
> other than the final commit's write and it has the very significant
> advantage of allowing other transactions (from other back-ends) to
> continue until they enter commit (and blocking waiting for their final
> commit write to complete).
>
> > > 2) Allow transactions to complete and do work while other threads are
> > > waiting on the completion of the log write.
> >
> > I'm missing something. There is no useful work that a transaction can
> > do between writing its commit record and reporting completion, is there?
> > It has to wait for that record to hit disk.
>
> The key here is that a thread that has not committed and therefore is
> not blocking can do work while "other threads" (should have said back-ends
> or processes) are waiting on their commit writes.

I may be missing something here, but other backends don't block while
one writes to WAL. Remember, we are proccess based, not thread based,
so the write() call only blocks the one session. If you had threads,
and you did a write() call that blocked other threads, I can see where
your idea would be good, and where async i/o becomes an advantage.

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 2002-10-04 04:47:37 Re: Return of INSTEAD rules
Previous Message Curtis Faith 2002-10-04 04:25:43 Re: Potential Large Performance Gain in WAL synching