Re: how to know whether query data from memory after pg_prewarm

From: Thomas Munro <thomas(dot)munro(at)enterprisedb(dot)com>
To: cedric(at)2ndquadrant(dot)com
Cc: jimmy <mpokky(at)126(dot)com>, "pgsql-generallists(dot)postgresql(dot)org" <pgsql-general(at)lists(dot)postgresql(dot)org>
Subject: Re: how to know whether query data from memory after pg_prewarm
Date: 2018-09-19 21:38:43
Message-ID: CAEepm=2BLauxzN0F25WD1K_E4X3jPcvANbkwGRSHdgoqPt6F8Q@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Wed, Sep 19, 2018 at 7:44 PM Cédric Villemain <cedric(at)2ndquadrant(dot)com> wrote:
> Le 19/09/2018 à 05:29, Thomas Munro a écrit :
> > On Wed, Sep 19, 2018 at 1:35 PM jimmy <mpokky(at)126(dot)com> wrote:
> >> I use select pg_prewarm('table1','read','main') to load data of table1 into the memory.
> >> when I use select count(1) from table1 group by aa to query data.
> >> I find the speed of query is not fast, I wonder whether it query data from memory.
> >> And it is slower than Oracle, both of Oracle and Postgresql has same table and count of data.
> >> when pg_prewarm use 'read' mode, the data is put into the OS cache, how to examine the table which is pg_prewarmed into the OS cache .
> >> I know pg_buffercache ,but it just examine the table in the shared buffer of Postgresql, not the table in the OS cache.
> >
> > This is a quick and dirty hack, but it might do what you want:
> >
> > https://github.com/macdice/pgdata_mincore
> >
> > Tested on FreeBSD, not sure how well it'll travel.
>
> You can use pgfincore extension for that purpose, and more.
>
> https://github.com/klando/pgfincore/blob/master/README.md

Yes, if you only want to know *how many* pages are in the OS page
cache. pgdata_mincore shows you which PG blocks are in the page cache
in the same format as pg_buffercache, which is useful for studying
double buffering effects. Maybe I should turn it into a patch for
pgfincore...

--
Thomas Munro
http://www.enterprisedb.com

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Tatsuo Ishii 2018-09-19 21:41:06 Re: Code of Conduct plan,Re: Code of Conduct plan
Previous Message Jonathan S. Katz 2018-09-19 21:32:24 Re: Code of Conduct plan