Re: how to know whether query data from memory after pg_prewarm - Mailing list pgsql-general

From Cédric Villemain
Subject Re: how to know whether query data from memory after pg_prewarm
Date
Msg-id d8b6fd9d-1b23-154a-7967-3f03f88dc527@2ndQuadrant.com
Whole thread Raw
In response to Re: how to know whether query data from memory after pg_prewarm  (Thomas Munro <thomas.munro@enterprisedb.com>)
Responses Re: how to know whether query data from memory after pg_prewarm  (Thomas Munro <thomas.munro@enterprisedb.com>)
Re:Re: how to know whether query data from memory after pg_prewarm  (jimmy <mpokky@126.com>)
List pgsql-general
Le 19/09/2018 à 05:29, Thomas Munro a écrit :
> On Wed, Sep 19, 2018 at 1:35 PM jimmy <mpokky@126.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
intothe 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


-- 
Cédric Villemain +33 (0)6 20 30 22 52
http://2ndQuadrant.fr/
PostgreSQL: Support 24x7 - Développement, Expertise et Formation


pgsql-general by date:

Previous
From: Fabio Pardi
Date:
Subject: Re: how to know whether query data from memory after pg_prewarm
Next
From: Gabriel Furstenheim Milerud
Date:
Subject: Converting to number with given format