Re: [GENERAL] Running with fsync=off

From: "Qingqing Zhou" <zhouqq(at)cs(dot)toronto(dot)edu>
To: pgsql-admin(at)postgresql(dot)org
Subject: Re: [GENERAL] Running with fsync=off
Date: 2005-12-28 19:12:54
Message-ID: douo1j$1ja6$1@news.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin pgsql-general


"Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote
>
> The actual runtime of the "sync" program is epsilon, because it doesn't
> wait for all the I/O to happen. The entire reason for the custom is
> that the I/O is going on while you type the second "sync".

But in our 7.4.x, there is code like this:

sync();
if (IsUnderPostmaster)
sleep(2);
sync();

So for standalone backend, that's just "sync();sync()". So the "I/O is going
on while you type the second sync" theory doesn't work. For ordinary
backends, that's even more wierd - Why wasting 2 seconds is enough to save
the data? Why not 3 seconds or 4?

Regards,
Qingqing

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Tom Lane 2005-12-28 19:58:40 Re: [GENERAL] Running with fsync=off
Previous Message Gary Stainburn 2005-12-28 17:39:00 Re: restored database locale problem

Browse pgsql-general by date

  From Date Subject
Next Message vishal saberwal 2005-12-28 19:34:25 C Function Problem for bytea output
Previous Message Tom Lane 2005-12-28 19:04:28 Re: POSTGRES DB 3 800 000 rows table, speed up?