Re: Why could different data in a table be processed with differentperformance? - Mailing list pgsql-performance

From Justin Pryzby
Subject Re: Why could different data in a table be processed with differentperformance?
Date
Msg-id 20180925023852.GX2471@telsasoft.com
Whole thread Raw
In response to Re: Why could different data in a table be processed with different performance?  (Vladimir Ryabtsev <greatvovan@gmail.com>)
Responses Re: Why could different data in a table be processed with different performance?  (Vladimir Ryabtsev <greatvovan@gmail.com>)
List pgsql-performance
On Mon, Sep 24, 2018 at 05:59:12PM -0700, Vladimir Ryabtsev wrote:
> > This seems significant..it means the heap was probably written in
> backwards
> order relative to the IDs, and the OS readahead is ineffective when index
> scanning across a range of IDs.
> But again, why is it different for one range and another? It was reversed
> for both ranges.

I don't have an explaination for it.. but I'd be curious to know
pg_stats.correlation for the id column:

SELECT schemaname, tablename, attname, correlation FROM pg_stats WHERE tablename='articles' AND column='article_id'
LIMIT1;
 

Justin


pgsql-performance by date:

Previous
From: Vladimir Ryabtsev
Date:
Subject: Re: Why could different data in a table be processed with different performance?
Next
From: Vladimir Ryabtsev
Date:
Subject: Re: Why could different data in a table be processed with different performance?