Received: from maia.hub.org (maia-2.hub.org [200.46.204.251]) by mail.postgresql.org (Postfix) with ESMTP id 3AFD5632D03 for ; Wed, 30 Jun 2010 23:33:27 -0300 (ADT) Received: from mail.postgresql.org ([200.46.204.86]) by maia.hub.org (mx1.hub.org [200.46.204.251]) (amavisd-maia, port 10024) with ESMTP id 45074-08 for ; Thu, 1 Jul 2010 02:33:18 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from momjian.us (momjian.us [70.90.9.53]) by mail.postgresql.org (Postfix) with ESMTP id 0036D62EF62 for ; Wed, 30 Jun 2010 23:33:19 -0300 (ADT) Received: (from bruce@localhost) by momjian.us (8.11.6/8.11.6) id o612XJX09768; Wed, 30 Jun 2010 22:33:19 -0400 (EDT) From: Bruce Momjian Message-Id: <201007010233.o612XJX09768@momjian.us> Subject: Re: typo in release note In-Reply-To: To: Robert Haas Date: Wed, 30 Jun 2010 22:33:19 -0400 (EDT) CC: Tom Lane , Fujii Masao , pgsql-docs X-Mailer: ELM [version 2.4ME+ PL124 (25)] MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="ELM1277951599-24636-3_" Content-Transfer-Encoding: 7bit X-Virus-Scanned: Maia Mailguard 1.0.1 X-Spam-Status: No, hits=-1.91 tagged_above=-5 required=5 tests=BAYES_00=-1.9, T_RP_MATCHES_RCVD=-0.01 X-Spam-Level: X-Archive-Number: 201006/88 X-Sequence-Number: 5656 --ELM1277951599-24636-3_ Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="US-ASCII" Robert Haas wrote: > On Thu, Jun 10, 2010 at 10:16 AM, Tom Lane wrote: > > Robert Haas writes: > >> On Thu, Jun 10, 2010 at 4:00 AM, Fujii Masao wrote: > >>> The release note says "Allow continuous archive (WAL) files > >>> to be streamed to a standby system" about SR. But no archive > >>> files are streamed in SR. So we should get rid of the word > >>> "archive" from that sentence? Here is the patch. > > > >> I don't think that reads very well. ?Possibly we could remove > >> "continuous archive" as a whole, but I don't think we can remove one > >> word and keep the other. > > > > I'm inclined to think that "continuous archiving" was meant. ?At least > > that's the phrase that is used in chapter 24. > > Yeah, probably - but I think what Fujii-san is concerned about is > whether streaming replication is a subset of continuous archiving - > the files never actually get "archived". Fujii-san is absolutely right. The original wording assumed streaming replication and hot standby were a subset of continuous archiving, but I later realized that you do not need to enable continuous archiving to do use them, particularly with a sufficiently large wal_keep_segments: http://momjian.us/main/blogs/pgblog/2010.html#June_16_2010 Attached patch applied. -- Bruce Momjian http://momjian.us EnterpriseDB http://enterprisedb.com + None of us is going to be here forever. + --ELM1277951599-24636-3_ Content-Transfer-Encoding: 7bit Content-Type: text/x-diff Content-Disposition: inline; filename="/rtmp/diff" Index: doc/src/sgml/release-9.0.sgml =================================================================== RCS file: /cvsroot/pgsql/doc/src/sgml/release-9.0.sgml,v retrieving revision 2.37 diff -c -c -r2.37 release-9.0.sgml *** doc/src/sgml/release-9.0.sgml 30 Jun 2010 14:25:24 -0000 2.37 --- doc/src/sgml/release-9.0.sgml 1 Jul 2010 02:29:52 -0000 *************** *** 398,404 **** ! Allow continuous archive standby systems to accept read-only queries (Simon Riggs, Heikki Linnakangas) --- 398,404 ---- ! Allow a standby system to accept read-only queries (Simon Riggs, Heikki Linnakangas) *************** *** 412,418 **** ! Allow continuous archive (WAL) files to be streamed to a standby system (Fujii Masao, Heikki Linnakangas) --- 412,418 ---- ! Allow write-ahead log (WAL) files to be streamed to a standby system (Fujii Masao, Heikki Linnakangas) --ELM1277951599-24636-3_--