Re: max_worker_processes on the standby

From: Alvaro Herrera <alvherre(at)2ndquadrant(dot)com>
To: Robert Haas <robertmhaas(at)gmail(dot)com>
Cc: Fujii Masao <masao(dot)fujii(at)gmail(dot)com>, pgsql-docs <pgsql-docs(at)postgresql(dot)org>
Subject: Re: max_worker_processes on the standby
Date: 2015-08-04 04:41:26
Message-ID: 20150804044126.GO2441@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-docs pgsql-hackers

Robert Haas wrote:
> On Thu, Jul 16, 2015 at 12:07 AM, Fujii Masao <masao(dot)fujii(at)gmail(dot)com> wrote:
> > One example which makes me a bit confusing is; both master and
> > standby are running fine with track_commit_timestamp disabled,
> > then I enable it only on the master. That is, the value of
> > track_commit_timestamp is not the same between master and standby.
> > No error happens in this case. According to the code of xlog_redo(),
> > the commit timestamp tracking mechanism is activated in this case.

Well. We could have the standby fail (i.e. stop replication) when it
receives the WAL record indicating that the master turned it on. But
that would be very unfriendly, so we chose to make it follow the
master config instead. We're okay with this part, yes?

> > However, after that, if standby is restarted, standby emits an error
> > because the value of track_commit_timestamp is not the same between
> > master and standby. Simple question is; why do we need to cause
> > the standby fail in this case? Since I'm not familiar with the code of
> > track_commit_timestamp yet, I'm not sure whether this behavior is
> > valid or not.
>
> Hmm, that seems like awfully weird behavior.

The alternative is to turn the feature on automatically if it sees that
the master also has it on, i.e. the value would not be what the config
file says it is. Doing this would be a bit surprising IMO, but given
the behavior above maybe it's better than the current behavior.

--
Álvaro Herrera http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

In response to

Responses

Browse pgsql-docs by date

  From Date Subject
Next Message Dmitry Igrishin 2015-08-04 13:15:47 21.3 Template database
Previous Message Robert Haas 2015-08-04 00:56:27 Re: max_worker_processes on the standby

Browse pgsql-hackers by date

  From Date Subject
Next Message David Rowley 2015-08-04 04:55:00 cost_agg() with AGG_HASHED does not account for startup costs
Previous Message Takashi Horikawa 2015-08-04 04:01:13 Re: patch: prevent user from setting wal_buffers over 2GB bytes