Re: Backend working directories and absolute file paths - Mailing list pgsql-hackers

From Andrew Dunstan
Subject Re: Backend working directories and absolute file paths
Date
Msg-id 42C437E6.5000301@dunslane.net
Whole thread Raw
In response to Backend working directories and absolute file paths  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: Backend working directories and absolute file paths
List pgsql-hackers

Tom Lane wrote:

>What I am speculating about is:
>    1. At postmaster start (or standalone backend start),
>       chdir into $PGDATA.
>    2. Henceforth, address everything under $PGDATA by
>       relative paths; don't use DataDir in the path at all.
>
>This way, if someone moves a data directory with a running postmaster
>in it, nothing breaks at all.  It would probably run a bit faster too,
>since file open calls would have fewer directories to traverse through.
>  
>

Makes plenty of sense, and is a common way of working.

>The only downside I can see to it is that backend and postmaster crashes
>would all consistently dump core into $PGDATA (on platforms where cores
>dump into the working directory, which is many but not all).  The
>current arrangement makes backends dump core into the subdirectory for
>the database they are in, which sometimes makes it a bit easier to
>identify what's what.  But I can't see that that's a valuable enough
>property to override the advantages of using relative paths.
>
>
>  
>

Maybe I have misunderstood. Could the backends not chdir into the db 
subdir and then do everything relative to that (using .. if necessary)?

How does this all play with tablespaces?

cheers

andrew


pgsql-hackers by date:

Previous
From: Peter Eisentraut
Date:
Subject: Re: Occupied port warning
Next
From: Andrew Dunstan
Date:
Subject: Re: Backend working directories and absolute file paths