Re: Write workload is causing severe slowdown in Production - Mailing list pgsql-performance

From Gnanakumar
Subject Re: Write workload is causing severe slowdown in Production
Date
Msg-id 006c01cd08dd$205af940$6110ebc0$@com
Whole thread Raw
In response to Re: Write workload is causing severe slowdown in Production  (Merlin Moncure <mmoncure@gmail.com>)
Responses Re: Write workload is causing severe slowdown in Production  ("Tomas Vondra" <tv@fuzzy.cz>)
Re: Write workload is causing severe slowdown in Production  ("Kevin Grittner" <Kevin.Grittner@wicourts.gov>)
List 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?




pgsql-performance by date:

Previous
From: Sebastian Melchior
Date:
Subject: Re: Sudden Query slowdown on our Postgresql Server
Next
From: "Tomas Vondra"
Date:
Subject: Re: Write workload is causing severe slowdown in Production