Re: [REPOST] Remote database questions (NFS shared access, RServ) - Mailing list pgsql-admin

From Tom Lane
Subject Re: [REPOST] Remote database questions (NFS shared access, RServ)
Date
Msg-id 23082.1002634346@sss.pgh.pa.us
Whole thread Raw
In response to [REPOST] Remote database questions (NFS shared access, RServ)  (Steve Frampton <frampton@LinuxNinja.com>)
List pgsql-admin
Steve Frampton <frampton@LinuxNinja.com> writes:
> even better solution seems to be to run my production (or backup mirror)
> from a NetApp over Gb NFS so there's no issues with replication.  Is it
> possible, safe, and advisable to share a PostgreSQL database file via NFS,
> as long as non-masters are only accessing it R/O?

No.  (a) there is no such thing as R/O access in Postgres; (b) the
non-masters would have no guarantee of seeing a consistent view,
due to buffering inside the master.

I don't even recommend mounting a database over NFS, let alone trying
to share it.  Too much risk of database corruption after a system crash,
because NFS provides only weak guarantees about write synchronization.
See the mailing list archives for past discussion about NFS risks.

            regards, tom lane

pgsql-admin by date:

Previous
From: "Summer S. Wilson"
Date:
Subject: Re: Vacuum
Next
From: "Chris Ruprecht"
Date:
Subject: Re: [REPOST] Remote database questions (NFS shared access, RServ)