Re: GIST optimization to limit calls to operator on sub nodes

From: Emre Hasegeli <emre(at)hasegeli(dot)com>
To: Pujol Mathieu <mathieu(dot)pujol(at)realfusio(dot)com>
Cc: PostgreSQL Performance <pgsql-performance(at)postgresql(dot)org>
Subject: Re: GIST optimization to limit calls to operator on sub nodes
Date: 2014-06-29 20:14:19
Message-ID: 20140629201419.GA63570@hasegeli.local
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Pujol Mathieu <mathieu(dot)pujol(at)realfusio(dot)com>:
> Hello,
> I already post my question in the General Mailing list, but without
> succeed so I try this one that seems to me more specialized.
> My question is about GIST index.
> I made my own index to handle specific data and operators. It works
> pretty fine but I wonder if it was possible to optimize it.
> When I run my operator on a GIST node (in the method
> gist_range_consistent) it returns "NotConsistent" /
> "MaybeConsistent" / "FullyConsistent".
> NotConsistent -> means that all subnodes could be ignored,
> gist_range_consistent return false
> MaybeConsistent -> means that at least one subnode/leaf will be
> consistent, gist_range_consistent return true
> FullyConsistent -> means that all subnodes/leaves will be
> consistent, gist_range_consistent return true
>
> So like with the "recheck flag" I would like to know if there is a
> way to notify postgres that it is not necessary to rerun my operator
> on subnodes, to speedup the search.

I do not think it is possible at the moment. The GiST framework can
be extended to support this use case. I am not sure about the
speedup. Most of the consistent functions do not seem very expensive
compared to other operations of the GiST framework. I would be
happy to test it, if you would implement.

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Tom Lane 2014-06-29 20:30:22 Re: GIST optimization to limit calls to operator on sub nodes
Previous Message Soni M 2014-06-29 13:05:49 Re: Postgres Replaying WAL slowly