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 1s72nb-003HT7-IG for pgsql-hackers@arkaria.postgresql.org; Wed, 15 May 2024 00:47:16 +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 1s72nb-005XPT-Ed for pgsql-hackers@arkaria.postgresql.org; Wed, 15 May 2024 00:47:15 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1s72nb-005XPK-5C for pgsql-hackers@lists.postgresql.org; Wed, 15 May 2024 00:47:15 +0000 Received: from momjian.us ([72.94.173.45]) by makus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1s72nY-000FR6-Gx for pgsql-hackers@postgresql.org; Wed, 15 May 2024 00:47:13 +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=z5OMudv9OUJJMl5DLBHAdsRLsn4ZEQe67WJ6QnFBkhA=; b=GcCvA lvcbBZ/b5WyhQHrecLMijUv1ITTaLBV5nKqXXqLrZwYY4My+FOSJgKGk9esYNrMNiCKJqhxrkrNb5 HPpDqKWos+h+N05GLtP2o1CYEA5k+HeaLNhGczhBkPGAUtIkakdYaGpF6v5rRdzhyutSx52Wn5BvR hk8MsQsJsdZ+hazgUvi8p+Nm6bGT+tPGhVAr21rhjIEOnYpuZLzjH+CLDC79lZ+zbV0zHH78c95Vx +ELboZWPk7ckLcd+CqSH6qRj0HeY1ZnUcpWMoPxHU1XvCNr69w4nkEhAjOx7wAaY3Jix6KJDDvmsA fWvG7d0oP3gU+Ah2b2wgoVjZZ7BVg==; Received: from bruce by momjian.us with local (Exim 4.96) (envelope-from ) id 1s72nW-008QzA-1T; Tue, 14 May 2024 20:47:10 -0400 Date: Tue, 14 May 2024 20:47:10 -0400 From: Bruce Momjian To: Jelte Fennema-Nio Cc: Joe Conway , Tom Lane , PostgreSQL-development Subject: Re: First draft of PG 17 release notes Message-ID: References: <1641606.1715376693@sss.pgh.pa.us> <6233479a-0e58-464c-8ff1-311e076a9c00@joeconway.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="dBHx46ivcLJPpM3T" Content-Disposition: inline In-Reply-To: List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk --dBHx46ivcLJPpM3T Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, May 14, 2024 at 02:20:24PM +0200, Jelte Fennema-Nio wrote: > On Tue, 14 May 2024 at 02:56, Bruce Momjian wrote: > > > > On Sat, May 11, 2024 at 10:24:39AM -0400, Joe Conway wrote: > > > On 5/11/24 09:57, Jelte Fennema-Nio wrote: > > > > The buffering change improved performance up to ~40% in some of the > > > > benchmarks. The case it improves mostly is COPY of large rows and > > > > streaming a base backup. That sounds user-visible enough to me to > > > > warrant an entry imho. > > > > > > +1 > > > > Attached patch applied. > > I think we shouldn't list this under the libpq changes and shouldn't > mention libpq in the description, since this patch changes > src/backend/libpq files instead of src/interfaces/libpq files. I think > it should be in the "General performance" section and describe the > change as something like the below: > > Improve performance when transferring large blocks of data to a client > > PS. I completely understand that this was not clear from the commit message. Okay, I went with your wording. Attached patch applied. -- Bruce Momjian https://momjian.us EDB https://enterprisedb.com Only you can decide what is important to you. --dBHx46ivcLJPpM3T 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 a3b4a8fb3b9..448f5653bc5 100644 --- a/doc/src/sgml/release-17.sgml +++ b/doc/src/sgml/release-17.sgml @@ -563,6 +563,17 @@ Improve performance of heavily-contended WAL writes (Bharath Rupireddy) + + + + +Improve performance when transferring large blocks of data to a client (Melih Mutlu) + + + - - - -Allow libpq to more efficiently transfer large blocks of data (Melih Mutlu) - - -