Re: statistics for array types

From: Jeff Janes <jeff(dot)janes(at)gmail(dot)com>
To: Tomas Vondra <tomas(dot)vondra(at)2ndquadrant(dot)com>
Cc: pgsql-hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: statistics for array types
Date: 2015-08-24 17:26:48
Message-ID: CAMkU=1wM2qD2sxpACNyt9ND_k7g4BqeMdVVQz4SeOiDD_0oFiw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Thu, Aug 20, 2015 at 6:00 PM, Tomas Vondra <tomas(dot)vondra(at)2ndquadrant(dot)com>
wrote:

> Hi,
>
> On 08/11/2015 04:38 PM, Jeff Janes wrote:
>
>> When reviewing some recent patches, I decided the statistics gathered
>> for arrays had some pre-existing shortcomings.
>>
>> The main one is that when the arrays contain rare elements there is
>> no histogram to fall back upon when the MCE array is empty, the way
>> there is for scalar stats. So it has to punt completely and resort
>> to saying that it is 0.5% selectivity without recourse to any data at
>> all.
>>
>> The rationale for applying the threshold before things are eligible
>> for inclusion in the MCE array seems to be that this puts some
>> theoretical bound on the amount of error we are likely to have in
>> that element. But I think it is better to exceed that theoretical
>> bound than it is to have no data at all.
>>
>> The attached patch forces there to be at least one element in MCE,
>> keeping the one element with the highest predicted frequency if the
>> MCE would otherwise be empty. Then any other element queried for is
>> assumed to be no more common than this most common element.
>>
>
> We only really need the frequency, right? So do we really need to keep
> the actual MCV element? I.e. most_common_elem_freqs does not have the
> same number of values as most_common_elems anyway:
>
> A list of the frequencies of the most common element values, i.e., the
> fraction of rows containing at least one instance of the given value.
> Two or three additional values follow the per-element frequencies;
> these are the minimum and maximum of the preceding per-element
> frequencies, and optionally the frequency of null elements.
> (Null when most_common_elems is.)
>
> So we might modify it so that it's always defined - either it tracks the
> same values as today (when most_common_elems is defined), or the
> frequency of the most common element (when most_common_elems is NULL).
>

I had also considered that. It requires more changes to make it happen,
and it seems to create a more complex contract on what those columns mean,
but without giving a corresponding benefit.

>
> This way we can keep the current theoretical error-bound on the MCE
> frequencies, and if that's not possible we can have at least the new
> value without confusing existing code.

But if the frequency of the most common element was grossly wrongly, then
whatever value we stick in there is still going to be grossly wrong.
Removing the value associated with it isn't going to stop it from being
wrong. When we do query with the (incorrectly thought) first most common
element, either it will find and use the wrong value from slot 1, or it
will find nothing and fall back on the same wrong value from slot 3.

>
> I'd also briefly considered just having the part of the code that
>> pulls the stats out of pg_stats interpret a MCE array as meaning
>> that nothing is more frequent than the threshold, but that would mean
>> that that part of the code needs to know about how the threshold is
>> chosen, which just seems wrong. And it would need to know the
>> difference between NULL MCE because no stats were gathered, versus
>> because stats were gathered but nothing met the threshold.
>>
>
> I'm not sure whether this is the same thing I just proposed ...
>

No, that was yet another option. "The only way this slot can be null is if
all values were present less than this number of times". Or if analyze had
never been run.

Cheers,

Jeff

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Paragon Corporation 2015-08-24 18:15:38 Planned release for PostgreSQL 9.5
Previous Message Joe Conway 2015-08-24 16:06:02 Re: exposing pg_controldata and pg_config as functions