Re: using shared_buffers during seq_scan - Mailing list pgsql-performance

From Albe Laurenz
Subject Re: using shared_buffers during seq_scan
Date
Msg-id A737B7A37273E048B164557ADEF4A58B5381EB79@ntex2010a.host.magwien.gv.at
Whole thread Raw
In response to using shared_buffers during seq_scan  (Artem Tomyuk <admin@leboutique.com>)
List pgsql-performance
Artem Tomyuk wrote:
> Is  Postgres use shared_buffers during seq_scan?
> In what way i can optimize seq_scan on big tables?

If the estimated table size is less than a quarter of shared_buffers,
the whole table will be read to the shared buffers during a sequential scan.

If the table is larger than that, it is scanned using a ring
buffer of 256 KB inside the shared buffers, so only 256 KB of the
table end up in cache.

You can speed up all scans after the first one by having lots of RAM.
Even if you cannot set shared_buffers four times as big as the table,
you can profit from having a large operating system cache.

Yours,
Laurenz Albe

pgsql-performance by date:

Previous
From: "Mike Sofen"
Date:
Subject: Re: Disk Benchmarking Question
Next
From: Jan Bauer Nielsen
Date:
Subject: Performance decline maybe caused by multi-column index?