Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1s74Fg-003QFh-Eu for pgsql-hackers@arkaria.postgresql.org; Wed, 15 May 2024 02:20:21 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.94.2) (envelope-from ) id 1s74Fg-006yjq-DD for pgsql-hackers@arkaria.postgresql.org; Wed, 15 May 2024 02:20:20 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1s74Fg-006yji-39 for pgsql-hackers@lists.postgresql.org; Wed, 15 May 2024 02:20:20 +0000 Received: from momjian.us ([72.94.173.45]) by magus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1s74FX-000I3X-LZ for pgsql-hackers@postgresql.org; Wed, 15 May 2024 02:20:19 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=momjian.us; s=2024011501; h=In-Reply-To:Content-Type:MIME-Version:References:Message-ID: Subject:Cc:To:From:Date:Sender:Reply-To:Content-Transfer-Encoding:Content-ID: Content-Description; bh=Mf2llvF1l5gyK62zzSIQm3RtwyKRy5SHQtRbgOg/cnI=; b=QFIXN QeLv32wtdGBajExsmd1ouFLWgMI9oUVCrqaY3OY36R+omLzvayXcLQYBUWkW4rF8lznkIn2BiTOGP Cq+GOQPI6sD5u7qABoWEFjAbxLEGs3/rqLoPWM6vnXdf8hDh9kiGh+2+uvAR0CItS3Gf+coi9VoUC RXksjthX2TS+mURCngsoY9svjnU01dY9lTeYErHBFhFwBGvSlPOCG0d77vGW4Xsz10DGln85z5LxD vjm36RcHonzde2KzpZwWD/rwdPvUb7Eg1ZTRvxYliHR+JPaTM7d+O4azn43nocrObnUMLLyZwL1JG tlu2sac8L6w+FTteKoQcqvaTsHFSg==; Received: from bruce by momjian.us with local (Exim 4.96) (envelope-from ) id 1s74FX-008ns9-2D; Tue, 14 May 2024 22:20:11 -0400 Date: Tue, 14 May 2024 22:20:11 -0400 From: Bruce Momjian To: Masahiko Sawada Cc: PostgreSQL-development Subject: Re: First draft of PG 17 release notes Message-ID: References: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="z+xPxyQN1+2X8V54" Content-Disposition: inline In-Reply-To: List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk --z+xPxyQN1+2X8V54 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, May 15, 2024 at 10:10:28AM +0900, Masahiko Sawada wrote: > > I looked at that item and I don't have a generic "make logical > > replication apply faster" item to merge it into, and many > > subtransactions seemed like enough of an edge-case that I didn't think > > mentioning it make sense. Can you see a good place to add it? > > I think that since many subtransactions cases are no longer becoming > edge-cases these days, we needed to improve that and it might be > helpful for users to mention it. How about the following item for > example? > > Improve logical decoding performance in cases where there are many > subtransactions. Okay, item added in the attached applied patch. > > > Finally, should we mention the following commit in the release note? > > > It's not a user-visible change but added a new regression test module. > > > > > > - Add tests for XID wraparound (e255b646a) > > > > I don't normally add testing infrastructure changes unless they are > > major. > > I've seen we had such item, for example in PG14 release note: > > Add a test module for the regular expression package (Tom Lane) > > But if our policy has already changed, I'm okay with not mentioning > the xid_wraparound test in the PG17 release note. Uh, that PG 14 test suite was huge and flushed out a lot of bugs, not only in our regex code but I think in the TCL/Henry Spencer regex library we inherited. We add 10-40 tests every year, and how many do I mention in the release notes? You had to go back to PG 14 to find one. We have not changed our release note "test item" criteria --- I only mention tests that are significant to our userbase. I think that test suite was significant to anyone using the TCL/Henry Spencer regex library. If you want your test mentioned, you have to explain why it is useful for users to know about it, or the value it brings them. -- Bruce Momjian https://momjian.us EDB https://enterprisedb.com Only you can decide what is important to you. --z+xPxyQN1+2X8V54 Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="master.diff" diff --git a/doc/src/sgml/release-17.sgml b/doc/src/sgml/release-17.sgml index 510810b53dc..e68c499e0db 100644 --- a/doc/src/sgml/release-17.sgml +++ b/doc/src/sgml/release-17.sgml @@ -1150,6 +1150,17 @@ Previously only btree indexes could be used for this purpose. + + + + +Improve logical decoding performance in cases where there are many subtransactions (Masahiko Sawada) + + +