Patch for 9.1: initdb -C option

Lists: pgsql-hackers
From: David Christensen <david(at)endpoint(dot)com>
To: PostgreSQL-development Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Patch for 9.1: initdb -C option
Date: 2010-03-29 05:04:06
Message-ID: EB06F3F5-C047-4DDA-BCD4-FFE629849FF8@endpoint.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

Hackers,

Enclosed is a patch to add a -C option to initdb to allow you to easily append configuration directives to the generated postgresql.conf file for use in programmatic generation. In my case, I'd been creating multiple db clusters with a script and would have specific overrides that I needed to make. This patch fell out of the desire to make this a little cleaner. Please review and comment.

From the commit message:

This is a simple mechanism to allow you to provide explicit overrides
to any GUC at initdb time. As a basic example, consider the case
where you are programmatically generating multiple db clusters in
order to test various configurations:

$ for cluster in 1 2 3 4 5 6;
> do initdb -D data$cluster -C "port = 1234$cluster" -C 'max_connections = 10' -C shared_buffers=1M;
> done

A possible future improvement would be to provide some basic
formatting corrections to allow specificications such as -C 'port
1234', -C port=1234, and -C 'port = 1234' to all be ultimately output
as 'port = 1234' in the final output. This would be consistent with
postmaster's parsing.

The -C flag was chosen to be a mnemonic for "config".

Regards,

David
--
David Christensen
End Point Corporation
david(at)endpoint(dot)com

Attachment Content-Type Size
0001-Add-C-option-to-initdb-to-allow-invocation-time-GUC-.patch application/octet-stream 5.9 KB
initdb-dash-C.diff application/octet-stream 5.3 KB

From: Takahiro Itagaki <itagaki(dot)takahiro(at)oss(dot)ntt(dot)co(dot)jp>
To: David Christensen <david(at)endpoint(dot)com>
Cc: PostgreSQL-development Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Patch for 9.1: initdb -C option
Date: 2010-03-29 05:37:59
Message-ID: 20100329143759.A602.52131E4D@oss.ntt.co.jp
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers


David Christensen <david(at)endpoint(dot)com> wrote:

> Enclosed is a patch to add a -C option to initdb to allow you to easily
> append configuration directives to the generated postgresql.conf file

Why don't you use just "echo 'options' >> $PGDATA/postgresql.conf" ?
Could you explain where the -C options is better than initdb + echo?

Regards,
---
Takahiro Itagaki
NTT Open Source Software Center


From: Greg Smith <greg(at)2ndquadrant(dot)com>
To: David Christensen <david(at)endpoint(dot)com>
Cc: PostgreSQL-development Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Patch for 9.1: initdb -C option
Date: 2010-03-29 05:49:24
Message-ID: 4BB03F64.4070605@2ndquadrant.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

David Christensen wrote:
> Enclosed is a patch to add a -C option to initdb to allow you to easily append configuration directives to the generated postgresql.conf file for use in programmatic generation.

We had a patch not quite make it for 9.0 that switched over the
postgresql.conf file to make it easy to scan a whole directory looking
for configuration files:
http://archives.postgresql.org/message-id/9837222c0910240641p7d75e2a4u2cfa6c1b5e603d84@mail.gmail.com

The idea there was to eventually reduce the amount of postgresql.conf
hacking that initdb and other tools have to do. Your patch would add
more code into a path that I'd like to see reduced significantly.

That implementation would make something easy enough for your use case
too (below untested but show the general idea):

$ for cluster in 1 2 3 4 5 6;
do initdb -D data$cluster
(
cat <<EOF
port = 1234$cluster;
max_connections = 10;
shared_buffers=1M;
EOF
) > data$cluster/conf.d/99clustersetup
done

This would actually work just fine for what you're doing right now if
you used ">> data$cluster/postgresql.conf" for that next to last line
there. There would be duplicates, which I'm guessing is what you wanted
to avoid with this patch, but the later values set for the parameters
added to the end would win and be the active ones.

--
Greg Smith 2ndQuadrant US Baltimore, MD
PostgreSQL Training, Services and Support
greg(at)2ndQuadrant(dot)com www.2ndQuadrant.us


From: Peter Eisentraut <peter_e(at)gmx(dot)net>
To: David Christensen <david(at)endpoint(dot)com>
Cc: PostgreSQL-development Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Patch for 9.1: initdb -C option
Date: 2010-03-29 09:22:48
Message-ID: 1269854568.3017.6.camel@fsopti579.F-Secure.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

On mån, 2010-03-29 at 00:04 -0500, David Christensen wrote:
> Enclosed is a patch to add a -C option to initdb to allow you to easily append configuration directives to the generated postgresql.conf file for use in programmatic generation.

I like this idea, but please use small -c for consistency with the
postgres program.


From: Bruce Momjian <bruce(at)momjian(dot)us>
To: David Christensen <david(at)endpoint(dot)com>
Cc: PostgreSQL-development Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Patch for 9.1: initdb -C option
Date: 2010-03-31 20:01:07
Message-ID: 201003312001.o2VK17m13124@momjian.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers


I have added this to the 9.1 commit-fest:

https://commitfest.postgresql.org/action/commitfest_view?id=6

---------------------------------------------------------------------------

David Christensen wrote:
> Hackers,
>
> Enclosed is a patch to add a -C option to initdb to allow you to easily append configuration directives to the generated postgresql.conf file for use in programmatic generation. In my case, I'd been creating multiple db clusters with a script and would have specific overrides that I needed to make. This patch fell out of the desire to make this a little cleaner. Please review and comment.
>
> From the commit message:
>
> This is a simple mechanism to allow you to provide explicit overrides
> to any GUC at initdb time. As a basic example, consider the case
> where you are programmatically generating multiple db clusters in
> order to test various configurations:
>
> $ for cluster in 1 2 3 4 5 6;
> > do initdb -D data$cluster -C "port = 1234$cluster" -C 'max_connections = 10' -C shared_buffers=1M;
> > done
>
> A possible future improvement would be to provide some basic
> formatting corrections to allow specificications such as -C 'port
> 1234', -C port=1234, and -C 'port = 1234' to all be ultimately output
> as 'port = 1234' in the final output. This would be consistent with
> postmaster's parsing.
>
> The -C flag was chosen to be a mnemonic for "config".
>
> Regards,
>
> David
> --
> David Christensen
> End Point Corporation
> david(at)endpoint(dot)com
>
>
>

[ Attachment, skipping... ]

[ Attachment, skipping... ]

>
> --
> Sent via pgsql-hackers mailing list (pgsql-hackers(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-hackers

--
Bruce Momjian <bruce(at)momjian(dot)us> http://momjian.us
EnterpriseDB http://enterprisedb.com


From: KaiGai Kohei <kaigai(at)ak(dot)jp(dot)nec(dot)com>
To: David Christensen <david(at)endpoint(dot)com>
Cc: PostgreSQL-development Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Patch for 9.1: initdb -C option
Date: 2010-07-15 00:16:28
Message-ID: 4C3E535C.40702@ak.jp.nec.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

David,

I'd like to volunteer reviewing your patch at first in this commit fest.

We already had a few comments on the list before. I want to see your
opinion for the suggestions prior to code reviews.

Itagaki-san suggested:
| > Enclosed is a patch to add a -C option to initdb to allow you to easily
| > append configuration directives to the generated postgresql.conf file
| Why don't you use just "echo 'options' >> $PGDATA/postgresql.conf" ?
| Could you explain where the -C options is better than initdb + echo?

Greg suggested:
| We had a patch not quite make it for 9.0 that switched over the postgresql.conf
| file to make it easy to scan a whole directory looking for configuration files:
| http://archives.postgresql.org/message-id/9837222c0910240641p7d75e2a4u2cfa6c1b5e603d84@mail.gmail.com
|
| The idea there was to eventually reduce the amount of postgresql.conf hacking
| that initdb and other tools have to do. Your patch would add more code into
| a path that I'd like to see reduced significantly.
|
| That implementation would make something easy enough for your use case too
| (below untested but show the general idea):
|
| $ for cluster in 1 2 3 4 5 6;
| do initdb -D data$cluster
| (
| cat <<EOF
| port = 1234$cluster;
| max_connections = 10;
| shared_buffers=1M;
| EOF
| ) > data$cluster/conf.d/99clustersetup
| done
|
| This would actually work just fine for what you're doing right now if you used
| ">> data$cluster/postgresql.conf" for that next to last line there.
| There would be duplicates, which I'm guessing is what you wanted to avoid with
| this patch, but the later values set for the parameters added to the end would
| win and be the active ones.

Peter suggested:
| > Enclosed is a patch to add a -C option to initdb to allow you to easily
| > append configuration directives to the generated postgresql.conf file
| > for use in programmatic generation.
| I like this idea, but please use small -c for consistency with the
| postgres program.

It seems to me what Greg suggested is a recent trend. Additional configurations
within separated files enables to install/uninstall third-party plugins easily
from the perspective of packagers, rather than consolidated configuration.

However, $PGDATA/postgresql.conf is created on initdb, so it does not belong
to a certain package. I don't have certainty whether the recent trend is also
suitable for us, or not.

Thanks,

(2010/03/29 14:04), David Christensen wrote:
> Hackers,
>
> Enclosed is a patch to add a -C option to initdb to allow you to easily append configuration directives to the generated postgresql.conf file for use in programmatic generation. In my case, I'd been creating multiple db clusters with a script and would have specific overrides that I needed to make. This patch fell out of the desire to make this a little cleaner. Please review and comment.
>
> From the commit message:
>
> This is a simple mechanism to allow you to provide explicit overrides
> to any GUC at initdb time. As a basic example, consider the case
> where you are programmatically generating multiple db clusters in
> order to test various configurations:
>
> $ for cluster in 1 2 3 4 5 6;
> > do initdb -D data$cluster -C "port = 1234$cluster" -C 'max_connections = 10' -C shared_buffers=1M;
> > done
>
> A possible future improvement would be to provide some basic
> formatting corrections to allow specificications such as -C 'port
> 1234', -C port=1234, and -C 'port = 1234' to all be ultimately output
> as 'port = 1234' in the final output. This would be consistent with
> postmaster's parsing.
>
> The -C flag was chosen to be a mnemonic for "config".
>
> Regards,
>
> David
> --
> David Christensen
> End Point Corporation
> david(at)endpoint(dot)com
>

--
KaiGai Kohei <kaigai(at)ak(dot)jp(dot)nec(dot)com>


From: "Kevin Grittner" <Kevin(dot)Grittner(at)wicourts(dot)gov>
To: "KaiGai Kohei" <kaigai(at)ak(dot)jp(dot)nec(dot)com>, "David Christensen" <david(at)endpoint(dot)com>
Cc: "PostgreSQL-development Hackers" <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Patch for 9.1: initdb -C option
Date: 2010-07-20 22:00:31
Message-ID: 4C45D62F0200002500033A0B@gw.wicourts.gov
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

Top posting. On purpose. :p

This patch seems to be foundering in a sea of opinions. It seems
that everybody wants to do *something* about this, but what?

For one more opinion, my shop has chosen to never touch the default
postgresql.conf file any more, beyond adding one line to the bottom
of it which is an include directive, to bring in our overrides.

What will make everyone happy here?

-Kevin


KaiGai Kohei <kaigai(at)ak(dot)jp(dot)nec(dot)com> wrote:
> (2010/03/29 14:04), David Christensen wrote:

>> Enclosed is a patch to add a -C option to initdb to allow you to
>> easily append configuration directives to the generated
>> postgresql.conf file for use in programmatic generation. In my
>> case, I'd been creating multiple db clusters with a script and
>> would have specific overrides that I needed to make. This patch
>> fell out of the desire to make this a little cleaner.
>> Please review and comment.
>>
>> From the commit message:
>>
>> This is a simple mechanism to allow you to provide explicit
>> overrides to any GUC at initdb time. As a basic example,
>> consider the case where you are programmatically generating
>> multiple db clusters in order to test various
>> configurations:
>>
>> $ for cluster in 1 2 3 4 5 6;
>> > do initdb -D data$cluster -C "port = 1234$cluster" \
>> > -C 'max_connections = 10' -C shared_buffers=1M;
>> > done
>>
>> A possible future improvement would be to provide some basic
>> formatting corrections to allow specificications such as -C
>> 'port 1234', -C port=1234, and -C 'port = 1234' to all be
>> ultimately output as 'port = 1234' in the final output.
>> This would be consistent with postmaster's parsing.
>>
>> The -C flag was chosen to be a mnemonic for "config".

> I'd like to volunteer reviewing your patch at first in this commit
> fest.
>
> We already had a few comments on the list before. I want to see
> your opinion for the suggestions prior to code reviews.
>
> Itagaki-san suggested:

> | Why don't you use just "echo 'options' \
> | >>$PGDATA/postgresql.conf" ?
> | Could you explain where the -C options is better than initdb +
> | echo?
>
> Greg suggested:
> | We had a patch not quite make it for 9.0 that switched over the
> | postgresql.conf file to make it easy to scan a whole directory
> | looking for configuration files:
> |
http://archives.postgresql.org/message-id/9837222c0910240641p7d75e2a4u2cfa6c1b5e603d84@mail.gmail.com
> |
> | The idea there was to eventually reduce the amount of
> | postgresql.conf hacking that initdb and other tools have to do.
> | Your patch would add more code into a path that I'd like to see
> | reduced significantly.
> |
> | That implementation would make something easy enough for your
> | use case too (below untested but show the general idea):
> |
> | $ for cluster in 1 2 3 4 5 6;
> | do initdb -D data$cluster
> | (
> | cat <<EOF
> | port = 1234$cluster;
> | max_connections = 10;
> | shared_buffers=1M;
> | EOF
> | ) > data$cluster/conf.d/99clustersetup
> | done
> |
> | This would actually work just fine for what you're doing right
> | now if you used ">> data$cluster/postgresql.conf" for that next
> | to last line there. There would be duplicates, which I'm
> | guessing is what you wanted to avoid with this patch, but the
> | later values set for the parameters added to the end would win
> | and be the active ones.
>
> Peter suggested:

> | I like this idea, but please use small -c for consistency with
> | the postgres program.
>
> It seems to me what Greg suggested is a recent trend. Additional
> configurations within separated files enables to install/uninstall
> third-party plugins easily from the perspective of packagers,
> rather than consolidated configuration.
>
> However, $PGDATA/postgresql.conf is created on initdb, so it does
> not belong to a certain package. I don't have certainty whether
> the recent trend is also suitable for us, or not.


From: David Christensen <david(at)endpoint(dot)com>
To: Kevin Grittner <Kevin(dot)Grittner(at)wicourts(dot)gov>
Cc: "KaiGai Kohei" <kaigai(at)ak(dot)jp(dot)nec(dot)com>, "PostgreSQL-development Hackers" <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Patch for 9.1: initdb -C option
Date: 2010-07-20 22:16:53
Message-ID: 05E4D220-138F-4A5B-80A8-738DC3B92660@endpoint.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers


On Jul 20, 2010, at 5:00 PM, Kevin Grittner wrote:

> Top posting. On purpose. :p
>
> This patch seems to be foundering in a sea of opinions. It seems
> that everybody wants to do *something* about this, but what?
>
> For one more opinion, my shop has chosen to never touch the default
> postgresql.conf file any more, beyond adding one line to the bottom
> of it which is an include directive, to bring in our overrides.
>
> What will make everyone happy here?

So you'll now issue:

$ initdb ... -C 'include localconfig.conf' ? :-)

Regards,

David
--
David Christensen
End Point Corporation
david(at)endpoint(dot)com


From: "Kevin Grittner" <Kevin(dot)Grittner(at)wicourts(dot)gov>
To: "David Christensen" <david(at)endpoint(dot)com>
Cc: "KaiGai Kohei" <kaigai(at)ak(dot)jp(dot)nec(dot)com>, "PostgreSQL-development Hackers" <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Patch for 9.1: initdb -C option
Date: 2010-07-20 22:33:34
Message-ID: 4C45DDEE0200002500033A19@gw.wicourts.gov
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

David Christensen <david(at)endpoint(dot)com> wrote:
> On Jul 20, 2010, at 5:00 PM, Kevin Grittner wrote:

>> my shop has chosen to never touch the default postgresql.conf
>> file any more, beyond adding one line to the bottom of it which
>> is an include directive, to bring in our overrides.

> So you'll now issue:
>
> $ initdb ... -C 'include localconfig.conf' ? :-)

Yeah, that would cover us. I'm wondering if it is flexible enough
to serve everyone else so well. I hesitate to suggest it, but
perhaps it would, in combination with the include directive
supporting a directory name to mean all files in the directory? Or
maybe if it supported wildcards?

-Kevin


From: KaiGai Kohei <kaigai(at)ak(dot)jp(dot)nec(dot)com>
To: David Christensen <david(at)endpoint(dot)com>
Cc: Kevin Grittner <Kevin(dot)Grittner(at)wicourts(dot)gov>, PostgreSQL-development Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Patch for 9.1: initdb -C option
Date: 2010-07-21 00:15:52
Message-ID: 4C463C38.20703@ak.jp.nec.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

(2010/07/21 7:33), Kevin Grittner wrote:
> David Christensen<david(at)endpoint(dot)com> wrote:
>> On Jul 20, 2010, at 5:00 PM, Kevin Grittner wrote:
>
>>> my shop has chosen to never touch the default postgresql.conf
>>> file any more, beyond adding one line to the bottom of it which
>>> is an include directive, to bring in our overrides.
>
>> So you'll now issue:
>>
>> $ initdb ... -C 'include localconfig.conf' ? :-)
>
> Yeah, that would cover us. I'm wondering if it is flexible enough
> to serve everyone else so well. I hesitate to suggest it, but
> perhaps it would, in combination with the include directive
> supporting a directory name to mean all files in the directory? Or
> maybe if it supported wildcards?
>
I reminded that David introduced the following example as a usage of
this feature.

$ for cluster in 1 2 3 4 5 6;
do
initdb -D data$cluster -C "port = 1234$cluster" \
-C 'max_connections = 10' \
-C shared_buffers=1M;
done

In this case, it tries to set up six database clusters with constant
max_connections and shared_buffers, but individual port numbers for
each database clusters.

Even if we support include directive here, it may not help to describe
the postgresql.conf with a smart way.

Then, how about the Itagaki-san's suggestion?

Itagaki-san suggested:
| > Enclosed is a patch to add a -C option to initdb to allow you to easily
| > append configuration directives to the generated postgresql.conf file
| Why don't you use just "echo 'options' >> $PGDATA/postgresql.conf" ?
| Could you explain where the -C options is better than initdb + echo?

As long as you don't need any special configuration during the initial
setting up launched by initdb, indeed, it seems to me we can edit the
postgresql.conf later.

Thanks,
--
KaiGai Kohei <kaigai(at)ak(dot)jp(dot)nec(dot)com>


From: Robert Haas <robertmhaas(at)gmail(dot)com>
To: Kevin Grittner <Kevin(dot)Grittner(at)wicourts(dot)gov>
Cc: KaiGai Kohei <kaigai(at)ak(dot)jp(dot)nec(dot)com>, David Christensen <david(at)endpoint(dot)com>, PostgreSQL-development Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Patch for 9.1: initdb -C option
Date: 2010-07-21 00:27:21
Message-ID: AANLkTi=C5S0e2V-fj9h3SBVzkurcjdHj1FuWtBh-Shmi@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

On Tue, Jul 20, 2010 at 6:00 PM, Kevin Grittner
<Kevin(dot)Grittner(at)wicourts(dot)gov> wrote:
> What will make everyone happy here?

Nothing.

But on a more serious note, the basic dilemma with this patch is
whether it's useful enough to justify the extra code. I think it's
pretty clearly harmless (modulo the fact that it might have bugs), but
is it useful enough to bother with?

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


From: KaiGai Kohei <kaigai(at)ak(dot)jp(dot)nec(dot)com>
To: David Christensen <david(at)endpoint(dot)com>
Cc: PostgreSQL-development Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Patch for 9.1: initdb -C option
Date: 2010-07-23 02:51:58
Message-ID: 4C4903CE.8030906@ak.jp.nec.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

David,

I checked your patch. Then, there are a few comments in the code.
Apart from the discussion in this thread, would you fix them please.

| *** a/src/bin/initdb/initdb.c
| --- b/src/bin/initdb/initdb.c
| *************** static char infoversion[100];
| *** 111,116 ****
| --- 111,117 ----
| static bool caught_signal = false;
| static bool output_failed = false;
| static int output_errno = 0;
| + static char **append_config_buffer;
|
| /* defaults */
| static int n_connections = 10;

It should be initialized by NULL.

| + static char **
| + append_line(char **src, char *line)
| + {
| + char **buf;
| + int i;
| + int src_lines = 0;
| +
| + if (!line)
| + return src;
| +
| + for (i=0; src[i]; i++)
| + src_lines++;
| +
| + /* we assume that anything existing in the buffer already has been
| + * xstrdup'd, and so only xstrdup new lines
| + */
| + buf = (char**) pg_malloc((src_lines + 2) * (sizeof(char *)));
| + memcpy(buf,src,(sizeof(char *))*src_lines);
| +
| + buf[src_lines] = xstrdupln(line);
| + buf[src_lines+1] = 0;
| +
| + return buf;
| + }

The append_line() is just append one lines on the tail of append_config_buffer
array. Why is it needed to compute number of elements for each invocations?
If we have a static variable to hold number of elements in append_config_buffer,
we can just implement it as follows:
append_config_buffer[append_config_buffer_index++] = xstrdupln(line);
append_config_buffer[append_config_buffer_index] = NULL;

And, it calls pg_malloc() for each invocations, but it may be costful.
Could you allocate 100 elements at first, then reallocate it only when
append_config_buffer_index reaches the boundary of the array?

And, don't use 0 for pointers, instead of NULL.

Anyway, it is an obvious feature, and seems to me works fine.

However, it is not clear for me how do we make progress this feature.
If we support a command to include other configuration, it also needs
to patch on the postgresql backend, not only initdb.
In my personal opinion, as long as you don't need any special configuration
under the single user mode or bootstraping mode launched by initdb,
we can modify it using shell script or others later.

It seems to me we need to make clear where is our consensus at first. :(

Thanks,

(2010/07/15 9:16), KaiGai Kohei wrote:
> David,
>
> I'd like to volunteer reviewing your patch at first in this commit fest.
>
> We already had a few comments on the list before. I want to see your
> opinion for the suggestions prior to code reviews.
>
> Itagaki-san suggested:
> |> Enclosed is a patch to add a -C option to initdb to allow you to easily
> |> append configuration directives to the generated postgresql.conf file
> | Why don't you use just "echo 'options'>> $PGDATA/postgresql.conf" ?
> | Could you explain where the -C options is better than initdb + echo?
>
> Greg suggested:
> | We had a patch not quite make it for 9.0 that switched over the postgresql.conf
> | file to make it easy to scan a whole directory looking for configuration files:
> | http://archives.postgresql.org/message-id/9837222c0910240641p7d75e2a4u2cfa6c1b5e603d84@mail.gmail.com
> |
> | The idea there was to eventually reduce the amount of postgresql.conf hacking
> | that initdb and other tools have to do. Your patch would add more code into
> | a path that I'd like to see reduced significantly.
> |
> | That implementation would make something easy enough for your use case too
> | (below untested but show the general idea):
> |
> | $ for cluster in 1 2 3 4 5 6;
> | do initdb -D data$cluster
> | (
> | cat<<EOF
> | port = 1234$cluster;
> | max_connections = 10;
> | shared_buffers=1M;
> | EOF
> | )> data$cluster/conf.d/99clustersetup
> | done
> |
> | This would actually work just fine for what you're doing right now if you used
> | ">> data$cluster/postgresql.conf" for that next to last line there.
> | There would be duplicates, which I'm guessing is what you wanted to avoid with
> | this patch, but the later values set for the parameters added to the end would
> | win and be the active ones.
>
> Peter suggested:
> |> Enclosed is a patch to add a -C option to initdb to allow you to easily
> |> append configuration directives to the generated postgresql.conf file
> |> for use in programmatic generation.
> | I like this idea, but please use small -c for consistency with the
> | postgres program.
>
> It seems to me what Greg suggested is a recent trend. Additional configurations
> within separated files enables to install/uninstall third-party plugins easily
> from the perspective of packagers, rather than consolidated configuration.
>
> However, $PGDATA/postgresql.conf is created on initdb, so it does not belong
> to a certain package. I don't have certainty whether the recent trend is also
> suitable for us, or not.
>
> Thanks,
>
> (2010/03/29 14:04), David Christensen wrote:
>> Hackers,
>>
>> Enclosed is a patch to add a -C option to initdb to allow you to easily append configuration directives to the generated postgresql.conf file for use in programmatic generation. In my case, I'd been creating multiple db clusters with a script and would have specific overrides that I needed to make. This patch fell out of the desire to make this a little cleaner. Please review and comment.
>>
>> From the commit message:
>>
>> This is a simple mechanism to allow you to provide explicit overrides
>> to any GUC at initdb time. As a basic example, consider the case
>> where you are programmatically generating multiple db clusters in
>> order to test various configurations:
>>
>> $ for cluster in 1 2 3 4 5 6;
>> > do initdb -D data$cluster -C "port = 1234$cluster" -C 'max_connections = 10' -C shared_buffers=1M;
>> > done
>>
>> A possible future improvement would be to provide some basic
>> formatting corrections to allow specificications such as -C 'port
>> 1234', -C port=1234, and -C 'port = 1234' to all be ultimately output
>> as 'port = 1234' in the final output. This would be consistent with
>> postmaster's parsing.
>>
>> The -C flag was chosen to be a mnemonic for "config".
>>
>> Regards,
>>
>> David
>> --
>> David Christensen
>> End Point Corporation
>> david(at)endpoint(dot)com
>>
>

--
KaiGai Kohei <kaigai(at)ak(dot)jp(dot)nec(dot)com>


From: Robert Haas <robertmhaas(at)gmail(dot)com>
To: KaiGai Kohei <kaigai(at)ak(dot)jp(dot)nec(dot)com>
Cc: David Christensen <david(at)endpoint(dot)com>, PostgreSQL-development Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Patch for 9.1: initdb -C option
Date: 2010-07-23 04:00:09
Message-ID: AANLkTim1y2iVUeUAMxPy+gnVjRVukG71V6mb8B4GoqRv@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

2010/7/22 KaiGai Kohei <kaigai(at)ak(dot)jp(dot)nec(dot)com>:
> Anyway, it is an obvious feature, and seems to me works fine.

So this makes it sound like you like the feature.

> However, it is not clear for me how do we make progress this feature.
> If we support a command to include other configuration, it also needs
> to patch on the postgresql backend, not only initdb.

I don't know what this means.

> In my personal opinion, as long as you don't need any special configuration
> under the single user mode or bootstraping mode launched by initdb,
> we can modify it using shell script or others later.

But here it sounds like you're saying we don't need the feature
because may as well just edit postgresql.conf by hand.

So I'm confused.

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


From: KaiGai Kohei <kaigai(at)ak(dot)jp(dot)nec(dot)com>
To: Robert Haas <robertmhaas(at)gmail(dot)com>
Cc: David Christensen <david(at)endpoint(dot)com>, PostgreSQL-development Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Patch for 9.1: initdb -C option
Date: 2010-07-23 04:10:36
Message-ID: 4C49163C.90700@ak.jp.nec.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

(2010/07/23 13:00), Robert Haas wrote:
> 2010/7/22 KaiGai Kohei<kaigai(at)ak(dot)jp(dot)nec(dot)com>:
>> Anyway, it is an obvious feature, and seems to me works fine.
>
> So this makes it sound like you like the feature.
>
>> However, it is not clear for me how do we make progress this feature.
>> If we support a command to include other configuration, it also needs
>> to patch on the postgresql backend, not only initdb.
>
> I don't know what this means.
>
>> In my personal opinion, as long as you don't need any special configuration
>> under the single user mode or bootstraping mode launched by initdb,
>> we can modify it using shell script or others later.
>
> But here it sounds like you're saying we don't need the feature
> because may as well just edit postgresql.conf by hand.
>
> So I'm confused.
>
Sorry for the confusion.

What I wanted to say is the patch itself is fine but we need to make consensus
before the detailed code reviewing.

Thanks,
--
KaiGai Kohei <kaigai(at)ak(dot)jp(dot)nec(dot)com>


From: Robert Haas <robertmhaas(at)gmail(dot)com>
To: KaiGai Kohei <kaigai(at)ak(dot)jp(dot)nec(dot)com>
Cc: David Christensen <david(at)endpoint(dot)com>, PostgreSQL-development Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Patch for 9.1: initdb -C option
Date: 2010-07-23 11:36:45
Message-ID: AANLkTimFy1S4B83-iB1Lf9-u62uHcsjXRK9VW8NDPQFH@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

2010/7/23 KaiGai Kohei <kaigai(at)ak(dot)jp(dot)nec(dot)com>:
> Sorry for the confusion.
>
> What I wanted to say is the patch itself is fine but we need to make consensus
> before the detailed code reviewing.

I guess we probably need some more people to express an opinion, then.
Do you have one?

I'm not sure I do, yet. I'd like to hear the patch author's response
to Itagaki Takahiro's question upthread: "Why don't you use just "echo
'options' >> $PGDATA/postgresql.conf" ? Could you explain where the
-C options is better than initdb + echo?"

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


From: David Christensen <david(at)endpoint(dot)com>
To: Robert Haas <robertmhaas(at)gmail(dot)com>
Cc: KaiGai Kohei <kaigai(at)ak(dot)jp(dot)nec(dot)com>, PostgreSQL-development Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Patch for 9.1: initdb -C option
Date: 2010-07-23 13:05:37
Message-ID: F8005734-24AB-45D8-84EF-E62E4B90E8FE@endpoint.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers


On Jul 23, 2010, at 6:36 AM, Robert Haas wrote:

> 2010/7/23 KaiGai Kohei <kaigai(at)ak(dot)jp(dot)nec(dot)com>:
>> Sorry for the confusion.
>>
>> What I wanted to say is the patch itself is fine but we need to make consensus
>> before the detailed code reviewing.
>
> I guess we probably need some more people to express an opinion, then.
> Do you have one?
>
> I'm not sure I do, yet. I'd like to hear the patch author's response
> to Itagaki Takahiro's question upthread: "Why don't you use just "echo
> 'options' >> $PGDATA/postgresql.conf" ? Could you explain where the
> -C options is better than initdb + echo?"

At this point, I have no real preference for this patch; it is just as easy to echo line >> datadir/postgresql.conf, so perhaps that makes this patch somewhat pointless. I suppose there's a shaky argument to be made for Windows compatibility, but I'm sure there's also an equivalent functionality to be found in the windows shell.

Reception to this idea has seemed pretty lukewarm, although I think Peter expressed some interest. Some of the previous linked correspondence in the review referred to some of the proposed split configuration file mechanisms. My particular implementation is fairly limited to the idea of a single configuration file, so compared to some of the other proposed approaches including split .conf files, it may not cover the same ground.

Like I said in the original submission, I found it helpful for the programmatic configuration of a number of simultaneous node, but if it's not generally useful to the community at large, I'll understand if it's punted.

Regards,

David
--
David Christensen
End Point Corporation
david(at)endpoint(dot)com


From: Euler Taveira de Oliveira <euler(at)timbira(dot)com>
To: David Christensen <david(at)endpoint(dot)com>
Cc: Robert Haas <robertmhaas(at)gmail(dot)com>, KaiGai Kohei <kaigai(at)ak(dot)jp(dot)nec(dot)com>, PostgreSQL-development Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Patch for 9.1: initdb -C option
Date: 2010-07-23 13:38:09
Message-ID: 4C499B41.60609@timbira.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

David Christensen escreveu:
> Like I said in the original submission, I found it helpful for the programmatic configuration of a number of simultaneous node, but if it's not generally useful to the community at large, I'll understand if it's punted.
>
I'm afraid it is the only use case for this new option. If it is, it doesn't
deserve a new option. We can live with echo + initdb for those cases.

--
Euler Taveira de Oliveira
http://www.timbira.com/


From: "Kevin Grittner" <Kevin(dot)Grittner(at)wicourts(dot)gov>
To: "David Christensen" <david(at)endpoint(dot)com>, "Robert Haas" <robertmhaas(at)gmail(dot)com>
Cc: "KaiGai Kohei" <kaigai(at)ak(dot)jp(dot)nec(dot)com>, "PostgreSQL-development Hackers" <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Patch for 9.1: initdb -C option
Date: 2010-07-23 13:51:51
Message-ID: 4C4958270200002500033BC6@gw.wicourts.gov
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

David Christensen <david(at)endpoint(dot)com> wrote:

> At this point, I have no real preference for this patch; it is
> just as easy to echo line >> datadir/postgresql.conf, so perhaps
> that makes this patch somewhat pointless.

On reflection, I'm inclined to agree.

> I suppose there's a shaky argument to be made for Windows
> compatibility, but I'm sure there's also an equivalent
> functionality to be found in the windows shell.

The Windows command shell supports the echo command and >> to
append.

> Like I said in the original submission, I found it helpful for
> the programmatic configuration of a number of simultaneous node,
> but if it's not generally useful to the community at large, I'll
> understand if it's punted.

Unless someone can show a significant benefit beyond >> appends,
I'll do that in a couple days.

-Kevin