Re: Update using primary key slow - Mailing list pgsql-performance

From Tom Lane
Subject Re: Update using primary key slow
Date
Msg-id 19722.1130429883@sss.pgh.pa.us
Whole thread Raw
In response to Update using primary key slow  (Denis <denis.sailer@yellowbook.com>)
List pgsql-performance
Denis <denis.sailer@yellowbook.com> writes:
> The following update was captured in the database log and the elapsed time
> was 1058.956 ms.  A later explain analyze shows total run time of 730 ms.
> Although isn't the actual time to update the row 183 ms.  Where is the
> other 547 ms coming from?  Updating the two secondary indexes??

The 183 msec is the time needed to *fetch* the row, not the time to
update it.  So it could well be that the other time is just the time
needed to update the table and indexes.  If this seems slower than
your hardware ought to be able to handle, I'd wonder about how recently
the table has been vacuumed.

            regards, tom lane

pgsql-performance by date:

Previous
From: Richard Huxton
Date:
Subject: Re: how postgresql request the computer resources
Next
From: Denis
Date:
Subject: Re: Update using primary key slow