Re: Where to load modules from?

From: Robert Haas <robertmhaas(at)gmail(dot)com>
To: Dimitri Fontaine <dimitri(at)2ndquadrant(dot)fr>
Cc: PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Where to load modules from?
Date: 2013-09-18 12:46:08
Message-ID: CA+Tgmob2kpV3_SnGhAFFcZJoGBXroEr_PkLMUNfAL0XJmH7sYw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Sat, Sep 14, 2013 at 4:15 PM, Dimitri Fontaine
<dimitri(at)2ndquadrant(dot)fr> wrote:
> We can attack the problem in several ways:
>
> - have an initdb switch to tweak the library path per cluster,

I see no advantage to making this impossible to change after initdb time.

> - have a superuser-only GUC to tweak the library path,

I could live with a GUC. Like Andres, I think it should be PGC_POSTMASTER.

> - consider on-disk extension as templates and move their module files
> somewhere private in $PGDATA and load the code from there

I think this will be horrid mess of security vulnerabilities and upgrade woes.

Here's another idea. At initdb time, create an empty directory called
called pg_you_can_load_stuff_from_here (pick a better name) inside
$PGDATA. Allow it to be replaced with a symlink. This would be
similar to what we do today with pg_xlog. In fact, you can imagine an
equivalent of initdb -X that does something precisely analogous. This
feels a bit more natural to me than a GUC.

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Robert Haas 2013-09-18 13:01:50 Re: Typo fix in spgtextproc.c
Previous Message Robert Haas 2013-09-18 12:31:36 Re: Where to load modules from?