From: | Ranier Vilela <ranier(dot)vf(at)gmail(dot)com> |
---|---|
To: | Pg Hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Small optimization set tuple block/tableOid once |
Date: | 2025-04-02 11:28:02 |
Message-ID: | CAEudQAqc8TYoHXGgUcnTJm-nc2TF2WwORm8rh1=nLjMVj1UkbQ@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Hi.
Inspired by [1]
There is an opportunity for optimization according to the commit:
2904324 <http://2904324a88f672b2ecc22735279c16d6e1ee178c>
" Due to splitting the block id into two 16 bit integers, BlockIdSet() is
more expensive than one might think. Doing it once per returned tuple shows
up as a small but reliably reproducible cost. It's simple enough to set the
block number just once per block in pagemode, so do so."
By moving the invariants out of the loop, it really is an improvement.
Then the following sources can be optimized:
contrib/pg_visibility/pg_visibility.c
contrib/pgstattuple/pgstatapprox.c
src/backend/access/heap/heapam.c
src/backend/access/heap/heapam_handler.c
src/backend/access/heap/pruneheap.c
src/backend/access/heap/vacuumlazy.c
src/backend/commands/dbcommands.c
Attached all patchs.
best regards,
Ranier Vilela
[1] Re: AIO writes vs hint bits vs checksums
<https://www.postgresql.org/message-id/lxzj26ga6ippdeunz6kuncectr5gfuugmm2ry22qu6hcx6oid6@lzx3sjsqhmt6>
Attachment | Content-Type | Size |
---|---|---|
pg_visibility_set_tuple_block_once.patch | application/octet-stream | 1.7 KB |
pgstattuple_set_tuple_block_once.patch | application/octet-stream | 1.3 KB |
heapam_set_tuple_block_once.patch | application/octet-stream | 2.7 KB |
heapam_handler_set_tuple_block_once.patch | application/octet-stream | 4.9 KB |
pruneheap_set_tuple_block_once.patch | application/octet-stream | 976 bytes |
vacuumlazy_set_tuple_block_once.patch | application/octet-stream | 2.9 KB |
dbcommands_set_tuple_block_once.patch | application/octet-stream | 1.1 KB |
From | Date | Subject | |
---|---|---|---|
Next Message | Mahendra Singh Thalor | 2025-04-02 11:45:57 | Re: getting "shell command argument contains a newline or carriage return:" error with pg_dumpall when db name have new line in double quote |
Previous Message | Ashutosh Bapat | 2025-04-02 11:16:30 | Re: pg_restore documentation and --create/--single-transaction limitation |