Re: again on index usage

From: Don Baccus <dhogaza(at)pacifier(dot)com>
To: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
Cc: "Ross J(dot) Reedstrom" <reedstrm(at)rice(dot)edu>, pgsql-hackers(at)postgresql(dot)org
Subject: Re: again on index usage
Date: 2002-01-11 19:42:38
Message-ID: 3C3F402E.30208@pacifier.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Bruce Momjian wrote:

> Also, when we pull from the kernel cache we have to read into our shared
> buffers; much faster than disk i/o but slower than if they were already
> in the cache.

Yes ... this is one reason why folks like Oracle want to be able to
bypass the kernel cache.

> For me the idea of doing non-cached sequential scans came
> from a Solaris internals book I was reading. I think it will be
> possible to mark large sequential scan buffer i/o with lower priority
> caching that may help performance. However, if others are also doing
> sequential scans of the same table _only_, our normal caching may be
> best. As you can see, this gets quite complicated and I am doubtful
> there will be a general solution to this problem --- more of a feedback
> loop may be the best bet --- determine which sequential scans are wiping
> the cache with little other purpose and start not caching them.

It would be interesting to learn more about the actual hueristic Oracle
uses (straight percents of the buffer cache? Something based on
concurrency? I have no idea). The Oracle folks have got tons and tons
of data on real-world big, busy db installations to draw from when they
investigate such things.

--
Don Baccus
Portland, OR
http://donb.photo.net, http://birdnotes.net, http://openacs.org

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2002-01-11 23:30:11 Re: Potential bug in pg_dump ...
Previous Message Don Baccus 2002-01-11 19:29:32 Re: again on index usage