On 09/03/15 04:51, Amit Kapila wrote:
On Sat, Mar 7, 2015 at 10:37 PM, Petr Jelinek <p...@2ndquadrant.com
<mailto:p...@2ndquadrant.com>> wrote:
 >
 > On 05/03/15 09:21, Amit Kapila wrote:
 >>
 >> On Tue, Feb 17, 2015 at 3:29 AM, Petr Jelinek <p...@2ndquadrant.com
<mailto:p...@2ndquadrant.com>
 >> <mailto:p...@2ndquadrant.com <mailto:p...@2ndquadrant.com>>> wrote:
 >>  >
 >>  >
 >>  > I didn't add the whole page visibility caching as the tuple ids we
 >> get from sampling methods don't map well to the visibility info we get
 >> from heapgetpage (it maps to the values in the rs_vistuples array not to
 >> to its indexes). Commented about it in code also.
 >>  >
 >>
 >> I think we should set pagemode for system sampling as it can
 >> have dual benefit, one is it will allow us caching tuples and other
 >> is it can allow us pruning of page which is done in heapgetpage().
 >> Do you see any downside to it?
 >
 >
 > Double checking for tuple visibility is the only downside I can think
of.

That will happen if we use heapgetpage and the way currently
code is written in patch, however we can easily avoid double
checking if we don't call heapgetpage and rather do the required
work at caller's place.


What's the point of pagemode then if the caller code does the visibility checks still one by one on each call. I thought one of the points of pagemode was to do this in one step (and one buffer lock).

And if the caller will try to do it in one step and cache the visibility info then we'll end up with pretty much same structure as rs_vistuples - there isn't saner way to cache this info other than ordered vector of tuple offsets, unless we assume that most pages have close to MaxOffsetNumber of tuples which they don't, so why not just use the heapgetpage directly and do the binary search over rs_vistuples.

--
 Petr Jelinek                  http://www.2ndQuadrant.com/
 PostgreSQL Development, 24x7 Support, Training & Services


--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

Reply via email to