Inconsistency between postgresql.conf and docs

Started by Josh Berkusalmost 15 years ago8 messageshackers
Jump to latest
#1Josh Berkus
josh@agliodbs.com

All,

A tester correctly reported this:

========

But in the sample file, the "synchronous_standby_names" parameter is the
first parameter under the heading "- Streaming Replication - Server
Settings" while in the documentation, that parameter has its own
subsection 18.5.5 after the "streaming replication" section 18.5.4.
Since the rest of section 18.5.4 was more than a screenful in my
browser, at first glance i didn't spot 18.5.5 and was confused.

========

He is correct. So, my question is, should the docs change, or should
postgresql.conf.sample change?

--
Josh Berkus
PostgreSQL Experts Inc.
http://pgexperts.com

#2Robert Haas
robertmhaas@gmail.com
In reply to: Josh Berkus (#1)
Re: Inconsistency between postgresql.conf and docs

On Tue, Jun 28, 2011 at 11:52 PM, Josh Berkus <josh@agliodbs.com> wrote:

But in the sample file, the "synchronous_standby_names" parameter is the
first parameter under the heading "- Streaming Replication - Server
Settings" while in the documentation, that parameter has its own
subsection 18.5.5 after the "streaming replication" section 18.5.4.
Since the rest of section 18.5.4 was more than a screenful in my
browser, at first glance i didn't spot 18.5.5 and was confused.

He is correct.  So, my question is, should the docs change, or should
postgresql.conf.sample change?

Another thing that's a bit strange there is that most of the
section-header comments in postgresql.conf say:

# - Section Name -

i.e. they begin and end with a dash. Whereas that one for some reason says:

# - Streaming Replication - Server Settings

And probably should just say:

# - Streaming Replication -

I don't have a strong feeling on whether or not we should put that
setting in its own section. Right now, we only have one setting for
synchronous replication, so I guess maybe it depends on if we think
there will be more in the future.

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

#3Josh Berkus
josh@agliodbs.com
In reply to: Robert Haas (#2)
Re: Inconsistency between postgresql.conf and docs

I don't have a strong feeling on whether or not we should put that
setting in its own section. Right now, we only have one setting for
synchronous replication, so I guess maybe it depends on if we think
there will be more in the future.

I believe there will be more in the future. However, given that the
replication section isn't exactly overpopulated, I think we could
consolidate.

My preference would be to have:

# REPLICATION

# - Master Settings -
# these settings affect the master role in replication
# they will be ignored on the standby

... settings ...

# - Standby Settings -
# these settings affect the standby role in replication
# they will be ignored on the master

... settings ...

That's how I've been setting up the file for my customers; it's fairly
clear and understandable.

--
Josh Berkus
PostgreSQL Experts Inc.
http://pgexperts.com

#4Fujii Masao
masao.fujii@gmail.com
In reply to: Josh Berkus (#3)
Re: Inconsistency between postgresql.conf and docs

On Thu, Jun 30, 2011 at 1:34 AM, Josh Berkus <josh@agliodbs.com> wrote:

My preference would be to have:

# REPLICATION

# - Master Settings -
# these settings affect the master role in replication
# they will be ignored on the standby

... settings ...

# - Standby Settings -
# these settings affect the standby role in replication
# they will be ignored on the master

... settings ...

That's how I've been setting up the file for my customers; it's fairly
clear and understandable.

Looks better than it's now. Anyway, if you change those, you would
need to change also the config_group in guc.c.

Regards,

--
Fujii Masao
NIPPON TELEGRAPH AND TELEPHONE CORPORATION
NTT Open Source Software Center

#5Tom Lane
tgl@sss.pgh.pa.us
In reply to: Fujii Masao (#4)
Re: Inconsistency between postgresql.conf and docs

Fujii Masao <masao.fujii@gmail.com> writes:

On Thu, Jun 30, 2011 at 1:34 AM, Josh Berkus <josh@agliodbs.com> wrote:

My preference would be to have:

# REPLICATION

# - Master Settings -
# these settings affect the master role in replication
# they will be ignored on the standby

... settings ...

# - Standby Settings -
# these settings affect the standby role in replication
# they will be ignored on the master

... settings ...

That's how I've been setting up the file for my customers; it's fairly
clear and understandable.

Looks better than it's now. Anyway, if you change those, you would
need to change also the config_group in guc.c.

OK, so the plan is to move these settings into a separate top-level
group "Replication", and sub-divide into master and standby settings,
removing the current classification for "streaming" versus
"synchronous"? That makes sense to me too, but it touches code as
well as docs ... last call for objections ...

regards, tom lane

#6Robert Haas
robertmhaas@gmail.com
In reply to: Tom Lane (#5)
Re: Inconsistency between postgresql.conf and docs

On Thu, Jul 7, 2011 at 1:26 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:

Fujii Masao <masao.fujii@gmail.com> writes:

On Thu, Jun 30, 2011 at 1:34 AM, Josh Berkus <josh@agliodbs.com> wrote:

My preference would be to have:

# REPLICATION

# - Master Settings -
# these settings affect the master role in replication
# they will be ignored on the standby

... settings ...

# - Standby Settings -
# these settings affect the standby role in replication
# they will be ignored on the master

... settings ...

That's how I've been setting up the file for my customers; it's fairly
clear and understandable.

Looks better than it's now. Anyway, if you change those, you would
need to change also the config_group in guc.c.

OK, so the plan is to move these settings into a separate top-level
group "Replication", and sub-divide into master and standby settings,
removing the current classification for "streaming" versus
"synchronous"?  That makes sense to me too, but it touches code as
well as docs ... last call for objections ...

None here. +1.

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

#7Peter Eisentraut
peter_e@gmx.net
In reply to: Tom Lane (#5)
Re: Inconsistency between postgresql.conf and docs

On tor, 2011-07-07 at 13:26 -0400, Tom Lane wrote:

OK, so the plan is to move these settings into a separate top-level
group "Replication", and sub-divide into master and standby settings,

Most of the messages use the term "primary" rather than "master". I
think there was a discussion in 9.0 in favor of that term.

#8Tom Lane
tgl@sss.pgh.pa.us
In reply to: Peter Eisentraut (#7)
Re: Inconsistency between postgresql.conf and docs

Peter Eisentraut <peter_e@gmx.net> writes:

On tor, 2011-07-07 at 13:26 -0400, Tom Lane wrote:

OK, so the plan is to move these settings into a separate top-level
group "Replication", and sub-divide into master and standby settings,

Most of the messages use the term "primary" rather than "master". I
think there was a discussion in 9.0 in favor of that term.

Well, there seems to be a lot more usage of the term "master" than
the other in the docs ...

regards, tom lane