Re: Write workload is causing severe slowdown in Production

From: "Gnanakumar" <gnanam(at)zoniac(dot)com>
To: "'Merlin Moncure'" <mmoncure(at)gmail(dot)com>, "'Kevin Grittner'" <Kevin(dot)Grittner(at)wicourts(dot)gov>
Cc: <pgsql-performance(at)postgresql(dot)org>
Subject: Re: Write workload is causing severe slowdown in Production
Date: 2012-03-23 10:10:05
Message-ID: 006c01cd08dd$205af940$6110ebc0$@com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

First off, thank you *so much* for that detailed explanation comparing with
a real-time application performance benchmark, which was really enlightening
for me.

> How are you handling concurrency? (Are you using FOR SHARE on your
> SELECT statements? Are you explicitly acquiring table locks before
> modifying data? Etc.) You might be introducing blocking somehow.

No, actually am not explicitly locking any tables -- all are *simple*
select, update, insert statements only.

> In particular, I recommend that you *never* leave transactions open
> or hold locks while waiting for user response or input.

Again, we're not leaving any transaction opens until for any user responses,
etc.

> When you hit that issue, there is not a continual slowdown --
> queries which normally run very fast (a small fraction of a second)
> may periodically all take tens of seconds. Is that the pattern
> you're seeing?

Yes, you're correct. Queries those normally run fast are becoming slow at
the time of this slowdown.

> Besides the outdated PostgreSQL release and possible blocking, I
> would be concerned if you are using any sort of ORM for the update
> application. You want to watch that very closely because the
> default behavior of many of them does not scale well. There's
> usually a way to get better performance through configuration and/or
> bypassing automatic query generation for complex data requests.

Am not able to understand above statements (...any sort of ORM for the
update application ...) clearly. Can you help me in understanding this?

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Tomas Vondra 2012-03-23 10:24:12 Re: Write workload is causing severe slowdown in Production
Previous Message Sebastian Melchior 2012-03-23 07:52:10 Re: Sudden Query slowdown on our Postgresql Server