Re: Re: [COMMITTERS] pgsql: Basic Recovery Control functions for use in Hot Standby. Pause,
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: Fujii Masao <masao.fujii@gmail.com>
Cc: Robert Haas <robertmhaas@gmail.com>,
Magnus Hagander <magnus@hagander.net>, Simon Riggs <simon@2ndquadrant.com>, PostgreSQL-development <pgsql-hackers@postgresql.org>
Date: 2011-03-16T14:27:37Z
Lists: pgsql-hackers
Commits
Same data as JSON:
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
Basic Recovery Control functions for use in Hot Standby. Pause, Resume,
- 8c6e3adbf792 9.1.0 cited
Fujii Masao <masao.fujii@gmail.com> writes: > How should recovery work when pause_at_recovery_target is > enabled but hot standby is disabled? We have three choices: > 1. Forbit those settings, i.e., throw FATAL error. Tom dislikes this > idea. No, I didn't say that. I said not to write elog(FATAL). If the combination is nonsensical then it's fine to forbid it, but you don't need FATAL for that. In particular, attempting to change to a disallowed setting after system startup should not result in crashing the postmaster. And it won't, if you just use the normal error level for complaining about an invalid GUC setting. regards, tom lane