Re: Streaming replication on win32, still broken - Mailing list pgsql-hackers

From Heikki Linnakangas
Subject Re: Streaming replication on win32, still broken
Date
Msg-id 4B7CEE67.8010002@enterprisedb.com
Whole thread Raw
In response to Re: Streaming replication on win32, still broken  (Fujii Masao <masao.fujii@gmail.com>)
Responses Re: Streaming replication on win32, still broken
List pgsql-hackers
Fujii Masao wrote:
> On Thu, Feb 18, 2010 at 5:28 AM, Heikki Linnakangas
> <heikki.linnakangas@enterprisedb.com> wrote:
>> If I'm reading the patch correctly, when wal_sync_method is 'open_sync',
>> walreceiver nevertheless opens the WAL file without the O_DIRECT flag.
>> When it later flushes it in XLogWalRcvFlush() by issue_xlog_fsync(),
>> issue_xlog_fsync() will do nothing because it assumes the write() synced
>> it already. So the data written isn't being forced to disk at all.
> 
> When 'open_sync' is chosen, the WAL file is opened with O_SYNC or O_FSYNC
> flag. So I think that write() flushes the data to disk even if O_DIRECT
> flag is not given. Am I missing something?

Ah, ok, you're right.

--  Heikki Linnakangas EnterpriseDB   http://www.enterprisedb.com


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: alpha4 timing
Next
From: Andres Freund
Date:
Subject: Re: Streaming replication and unfit messages