Re: Use read streams in pg_visibility
Michael Paquier <michael@paquier.xyz>
From: Michael Paquier <michael@paquier.xyz>
To: Nazir Bilal Yavuz <byavuz81@gmail.com>
Cc: PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>
Date: 2024-08-19T06:30:23Z
Lists: pgsql-hackers
On Tue, Aug 13, 2024 at 03:22:27PM +0300, Nazir Bilal Yavuz wrote: > Hi, > > I am working on using the read stream in pg_visibility. There are two > places to use it: > > 1- collect_visibility_data() > > This one is straightforward. I created a read stream object if > 'include_pd' is true because read I/O is done when 'include_pd' is > true. There is ~4% timing improvement with this change. I started the > server with the default settings and created a 6 GB table. Then run > 100 times pg_visibility() by clearing the OS cache between each run. > ---------- Mind sharing a script for reproducibility? Except for the drop_caches part, of course.. -- Michael
Commits
-
Optimize pg_visibility with read streams.
- 65c310b310a6 18.0 landed
- ed1b1ee59fb3 18.0 landed
-
Revert "Optimize pg_visibility with read streams."
- ddfc556a6444 18.0 landed
-
Fix stack variable scope from previous commit.
- 1c61fd8b5279 18.0 landed
-
Add block_range_read_stream_cb(), to deduplicate code.
- c582b75851c2 18.0 landed