Function execute slow down in 9.2

From: Александр Белинский <avinfo79(at)gmail(dot)com>
To: pgsql-performance(at)postgresql(dot)org
Subject: Function execute slow down in 9.2
Date: 2013-08-12 14:59:43
Message-ID: 5208F85F.50706@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Hi!
I can't explain why function is slow down on same data.
Postgresql.conf the same, hardware is more powerful.
Diffrents is postgresql version

Here it;s my tests

Server 1 PSQL 9.1

FIRST RUN
EXPLAIN (ANALYZE, BUFFERS) SELECT webclient.prc_ti_cache_alloc_dbl_update(
21325134
);

'Result (cost=0.00..0.26 rows=1 width=0) (actual
time=1399.586..1399.587 rows=1 loops=1)'
' Buffers: shared hit=40343 read=621'
'Total runtime: 1399.613 ms'

SECOND RUN
'Result (cost=0.00..0.26 rows=1 width=0) (actual time=42.540..42.541
rows=1 loops=1)'
' Buffers: shared hit=37069'
'Total runtime: 42.558 ms'

THIRD RUN
'Result (cost=0.00..0.26 rows=1 width=0) (actual time=198.893..198.894
rows=1 loops=1)'
' Buffers: shared hit=37069'
'Total runtime: 198.908 ms'

Server 2 PSQL 9.2

FIRST RUN
EXPLAIN (ANALYZE, BUFFERS) SELECT webclient.prc_ti_cache_alloc_dbl_update(
21325134
);

'Result (cost=0.00..0.26 rows=1 width=0) (actual
time=1328.103..1328.104 rows=1 loops=1)'
' Buffers: shared hit=43081 read=233 written=36'
'Total runtime: 1328.129 ms'

SECOND RUN
'Result (cost=0.00..0.26 rows=1 width=0) (actual
time=1699.711..1699.712 rows=1 loops=1)'
' Buffers: shared hit=42919'
'Total runtime: 1699.737 ms'

THIRD RUN
'Result (cost=0.00..0.26 rows=1 width=0) (actual
time=1907.947..1907.948 rows=1 loops=1)'
' Buffers: shared hit=42869'
'Total runtime: 1907.965 ms'

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Pavel Stehule 2013-08-12 15:24:17 Re: Function execute slow down in 9.2
Previous Message Александр Белинский 2013-08-12 12:21:41 function execute on v.9.2 slow down