Re: Performance Issue on a table

From: Justin Pryzby <pryzby(at)telsasoft(dot)com>
To: Manoj Kumar <manojkumar(at)temenos(dot)com>
Cc: pgsql-performance(at)postgresql(dot)org, "A(dot)S(dot) Fazlu Rahman" <fazlur(at)temenos(dot)com>
Subject: Re: Performance Issue on a table
Date: 2021-07-23 18:18:17
Message-ID: 20210723181817.GP19620@telsasoft.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

On Thu, Jul 22, 2021 at 01:54:25PM +0000, Manoj Kumar wrote:
> Recently we have noticed that in one of our DB instances there is a potential delay in querying a table from java code. could you please check the attached log and help understand what is the problem and which direction should be look into solving this delay of 4 odd mins ?

I'm not familiar with the log, but it looks like the delay is in query parsing
(ParseComplete). Which seems weird. You might try running wireshark to verify
that. Or check postgres logs, and make sure the query isn't being blocked by
DDL commands. Make sure these are enabled:

log_lock_waits = 'on'
deadlock_timeout = '1s'

> 4:25:00 PM ... execute FINEST: simple execute, handler=org(dot)postgresql(dot)jdbc(dot)PgStatement$StatementResultHandler(at)13e344d, maxRows=0, fetchSize=0, flags=1
> 4:25:00 PM ... sendSimpleQuery FINEST: FE=> SimpleQuery(query="SAVEPOINT PGJDBC_AUTOSAVE")
> 4:25:00 PM ... sendParse FINEST: FE=> Parse(stmt=null,query="SELECT RECID FROM TAFJ_HASHLOCKS WHERE RECID = $1 FOR UPDATE NOWAIT ",oids={1043})
> 4:25:00 PM ... sendBind FINEST: FE=> Bind(stmt=null,portal=null,$1=<'256292129'>,type=VARCHAR)
> 4:25:00 PM ... sendDescribePortal FINEST: FE=> Describe(portal=null)
> 4:25:00 PM ... sendExecute FINEST: FE=> Execute(portal=null,limit=0)
> 4:25:00 PM ... sendSync FINEST: FE=> Sync
> 4:25:00 PM ... receiveCommandStatus FINEST: <=BE CommandStatus(RELEASE)
> 4:25:00 PM ... receiveRFQ FINEST: <=BE ReadyForQuery(T)
> 4:25:00 PM ... receiveCommandStatus FINEST: <=BE CommandStatus(SAVEPOINT)
> 4:25:00 PM ... receiveRFQ FINEST: <=BE ReadyForQuery(T)
> 4:29:20 PM ... processResults FINEST: <=BE ParseComplete [null]
> 4:29:20 PM ... processResults FINEST: <=BE BindComplete [unnamed]
> 4:29:20 PM ... receiveFields FINEST: <=BE RowDescription(1)

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Tom Lane 2021-07-25 18:08:27 Re: Big performance slowdown from 11.2 to 13.3
Previous Message ldh@laurent-hasson.com 2021-07-23 17:17:48 RE: Big performance slowdown from 11.2 to 13.3