Re[2]: [PATCH] heap_insert() and heap_update() optimization

From: Andrey Klychkov <aaklychkov(at)mail(dot)ru>
To: Andres Freund <andres(at)anarazel(dot)de>
Cc: PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re[2]: [PATCH] heap_insert() and heap_update() optimization
Date: 2018-10-17 06:48:19
Message-ID: 1539758899.916745586@f518.i.mail.ru
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

> Interesting. That's with an optimized build, or an assertion build?

Hello,
That was an optimized build.

However I've just done some extra time tests and didn't notice so significant difference as early.
Even more - avg origin 1272, avg patched 1303.

Maybe there was the autovacuum / analyze / checkpoint or something else that could influence on the yesterday tests.

Thanks a lot for explanation!

>Вторник, 16 октября 2018, 22:57 +03:00 от Andres Freund <andres(at)anarazel(dot)de>:
>
>Hi,
>
>On 2018-10-16 11:28:17 +0300, Andrey Klychkov wrote:
>> I suggest the small attached patch that gives a bit of heap_insert() and heap_update() optimization
>> by reducing calls of BufferGetPage(buffer) into them.
>> I measured call time of these:
>> heap_insert(): avg origin 13394 ns, avg patched 12685 ns; perf increases +5.59%
>> heap_update(): avg origin 15728 ns, avg patched 13936 ns; perf increases +11.39%
>> This can be notable when there are handling many rows.
>
>Interesting. That's with an optimized build, or an assertion build?
>
>Wonder what precisely prevents the optimizer to recognize
>BufferGetPage() with a constant argument will always be the same
>result. I assume it's that it doesn't recognize that BufferBlocks can't
>change across other function calls? Might also be the pointer math, or
>the if block...
>
>Wonder if we could force the compiler's hand by making BufferGetPage an
>inline function and decorating it with __attribute__((pure)) or such.
>
>I see little reason to not apply what you have here, but there's a lot
>of other places that access buffers...
>
>Greetings,
>
>Andres Freund

--
Regards,
Andrey Klychkov

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Andres Freund 2018-10-17 06:53:04 Re: [PATCH] heap_insert() and heap_update() optimization
Previous Message Sumit Chaturvedi 2018-10-17 04:42:06 Fwd: Query Optimizer Postgresql