Re: PostgreSQL 12: Feature Highlights

From: Amit Langote <Langote_Amit_f8(at)lab(dot)ntt(dot)co(dot)jp>
To: Bruce Momjian <bruce(at)momjian(dot)us>
Cc: David Rowley <david(dot)rowley(at)2ndquadrant(dot)com>, Justin Clift <justin(at)postgresql(dot)org>, "Jonathan S(dot) Katz" <jkatz(at)postgresql(dot)org>, pgsql-advocacy(at)lists(dot)postgresql(dot)org
Subject: Re: PostgreSQL 12: Feature Highlights
Date: 2019-05-15 00:34:10
Message-ID: 8fd9a06a-8d8f-b943-0ac1-7a4d58e7b20c@lab.ntt.co.jp
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-advocacy pgsql-hackers

On 2019/05/14 22:19, Bruce Momjian wrote:
> On Tue, May 14, 2019 at 06:25:43PM +0900, Amit Langote wrote:
>> Considering the quoted discussion here, maybe it's a good idea to note
>> that only the operations that need to touch a small number of partitions
>> are now processed efficiently, which covers both SELECT/UPDATE/DELETE that
>> benefit from improved pruning efficiency and INSERT that benefit from
>> improved tuple routing efficiency. So, maybe:
>>
>> Tables with thousands of child partitions can now be processed
>> efficiently by operations that only need to touch a small number
>> of partitions.
>>
>> That is, as I mentioned above, as opposed to queries that need to process
>> all partitions (such as, select count(*) from partitioned_table), which
>> don't perform any faster in v12 than in v11. The percentage of users who
>> run such workloads on PostgreSQL may be much smaller today, but perhaps
>> it's not a good idea to mislead them into thinking that *everything* with
>> partitioned tables is now faster even with thousands of partitions.
>
> Agreed, I changed it to your wording.

Thank you.

Regards,
Amit

In response to

Browse pgsql-advocacy by date

  From Date Subject
Next Message Jonathan S. Katz 2019-05-15 02:03:16 Re: PostgreSQL 12: Feature Highlights
Previous Message Bruce Momjian 2019-05-14 13:19:45 Re: PostgreSQL 12: Feature Highlights

Browse pgsql-hackers by date

  From Date Subject
Next Message Thomas Munro 2019-05-15 00:52:47 Re: PSA: New intel MDS vulnerability mitigations cause measurable slowdown
Previous Message Andres Freund 2019-05-15 00:11:28 Re: pgsql: Compute XID horizon for page level index vacuum on primary.