From: | Kirill Reshke <reshkekirill(at)gmail(dot)com> |
---|---|
To: | Dmitry Dolgov <9erthalion6(at)gmail(dot)com> |
Cc: | Sergei Kornilov <sk(at)zsrv(dot)org>, yasuo(dot)honda(at)gmail(dot)com, tgl(at)sss(dot)pgh(dot)pa(dot)us, smithpb2250(at)gmail(dot)com, vignesh21(at)gmail(dot)com, michael(at)paquier(dot)xyz, nathandbossart(at)gmail(dot)com, stark(dot)cfm(at)gmail(dot)com, geidav(dot)pg(at)gmail(dot)com, alvherre(at)alvh(dot)no-ip(dot)org, marcos(at)f10(dot)com(dot)br, robertmhaas(at)gmail(dot)com, david(at)pgmasters(dot)net, pgsql-hackers(at)postgresql(dot)org, pavel(dot)trukhanov(at)gmail(dot)com, Sutou Kouhei <kou(at)clear-code(dot)com> |
Subject: | Re: pg_stat_statements and "IN" conditions |
Date: | 2024-11-28 15:36:47 |
Message-ID: | CALdSSPjMpYpH8Rht3osco-UrH_kx9ebWd1AwmL7sHcas6tMgFQ@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Wed, 14 Aug 2024 at 01:06, Dmitry Dolgov <9erthalion6(at)gmail(dot)com> wrote:
>
> > On Sun, Aug 11, 2024 at 09:34:55PM GMT, Dmitry Dolgov wrote:
> > > On Sun, Aug 11, 2024 at 07:54:05PM +0300, Sergei Kornilov wrote:
> > >
> > > This feature will improve my monitoring. Even in patch 0001. I think there are many other people in the thread who think this is useful. So maybe we should move it forward? Any complaints about the overall design? I see in the discussion it was mentioned that it would be good to measure performance difference.
> > >
> > > PS: patch cannot be applied at this time, it needs another rebase.
> >
> > Yeah, it seems like most people are fine with the first patch and the
> > simplest approach. I'm going to post a rebased version and a short
> > thread summary soon.
>
> Ok, here is the rebased version. If anyone would like to review them, below is
> the short summary of the thread. Currently the patch series contains 4 changes:
>
> * 0001-Prevent-jumbling-of-every-element-in-ArrayExpr.patch
>
> Implements the simplest way to handle constant arrays, if the array contains
> only constants it will be reduced. This is the basis, if I read it correctly
> Nathan and Michael expressed that they're mostly fine with this one.
>
> Michael seems to be skeptical about the "merged" flag in the LocationLen
> struct, but from what I see the proposed alternative has problems as well.
> There was also a note that the loop over constants has to be benchmarked, but
> it's not entirely clear for me in which dimentions to benchmark (i.e. what
> are the expectations). For both I'm waiting on a reply to my questions.
>
> * 0002-Reusable-decimalLength-functions.patch
>
> A small refactoring to make already existing "powers" functonality reusable
> for following patches.
>
> * 0003-Merge-constants-in-ArrayExpr-into-groups.patch
>
> Makes handling of constant arrays smarter by taking into account number of
> elements in the array. This way records are merged into groups power of 10,
> i.e. arrays with length 55 will land in a group 10-99, with lenght 555 in a
> group 100-999 etc. This was proposed by Alvaro, and personally I like this
> approach, because it remediates the issue of one-size-fits-all for the static
> threshold. But there are opinions that this introduces too much complexity.
>
> * 0004-Introduce-query_id_const_merge_threshold.patch
>
> Fine tuning for the previous patch, makes only arrays with the length over a
> certain threshold to be reduced.
>
> On top of that Yasuo Honda and Jakub Wartak have provided a couple of practical
> examples, where handling of constant arrays has to be improved. David Geier
> pointed out some examples that might be confusing as well. All those are
> definitely worth addressing, but out of scope of this patch for now.
Hi! Can you please send a rebased version of this?
--
Best regards,
Kirill Reshke
From | Date | Subject | |
---|---|---|---|
Next Message | Kirill Reshke | 2024-11-28 15:45:11 | Re: [PATCH] SVE popcount support |
Previous Message | Kirill Reshke | 2024-11-28 15:33:04 | Re: Change COPY ... ON_ERROR ignore to ON_ERROR ignore_row |