Re: [EXTERNAL] Re: Why is an error not thrown when the time exceeds the lock timeout for an ExclusiveLock on a transaction ?

From: "Mansky, Edmund J(dot) (GSFC-671(dot)0)[ADNET Affiliate]" <edmund(dot)j(dot)mansky(at)nasa(dot)gov>
To: Martin Gainty <mgainty(at)hotmail(dot)com>, "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Re: [EXTERNAL] Re: Why is an error not thrown when the time exceeds the lock timeout for an ExclusiveLock on a transaction ?
Date: 2025-04-18 20:27:27
Message-ID: 36DD59D0-D435-4F63-9278-344EB485509C@nasa.gov
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Ahh, thanks Tom & Martin, it looks like STATEMENT_TIMEOUT is what I need to set first before the SQL in question.

Many thanks,

--Ed

[signature_1371444655]

Ed Mansky
Software Engineer
SDAC / VSO
NASA Goddard Space Flight Center
ADNET SYSTEMS, Inc.
8800 Greenbelt Rd, Greenbelt MD 20771
edmund(dot)j(dot)mansky(at)nasa(dot)gov<mailto:edmund(dot)j(dot)mansky(at)nasa(dot)gov>

From: Martin Gainty <mgainty(at)hotmail(dot)com>
Date: Friday, April 18, 2025 at 11:51 AM
To: "Mansky, Edmund J. (GSFC-671.0)[ADNET Affiliate]" <edmund(dot)j(dot)mansky(at)nasa(dot)gov>, "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: [EXTERNAL] Re: Why is an error not thrown when the time exceeds the lock timeout for an ExclusiveLock on a transaction ?

CAUTION: This email originated from outside of NASA. Please take care when clicking links or opening attachments. Use the "Report Message" button to report suspicious messages to the NASA SOC.

display server side postgresql.conf varables from postgresql.conf
Server-Side Timeout Configuration:
1. 1. statement_timeout<https://www.google.com/search?sca_esv=644c802b3ab9190b&cs=0&sxsrf=AHTn8zpzk_OZQcHpispy0ijqrWSDrMlELA%3A1745001204291&q=statement_timeout&sa=X&ved=2ahUKEwiawuyGnOKMAxWLK1kFHRteEKcQxccNegQICRAB&mstk=AUtExfBOMKRWfH0cGgz0JXPkzkndM8lqbAWvcK_jlcyCYdqI6MYHzvkYc8Ka25ep1pS8Vf0hXusA-LsHOwLVwFobLCq-PlfDRiit26vsZFjkkkbaq-e6UfCAgRy_3M0Bbx9Gm5UxlUi4UChlBJPBkxpG6WczQqROlXxkxhCWYxrqv-ICWms&csui=3>:
2. 2. lock_timeout<https://www.google.com/search?sca_esv=644c802b3ab9190b&cs=0&sxsrf=AHTn8zpzk_OZQcHpispy0ijqrWSDrMlELA%3A1745001204291&q=lock_timeout&sa=X&ved=2ahUKEwiawuyGnOKMAxWLK1kFHRteEKcQxccNegQICxAB&mstk=AUtExfBOMKRWfH0cGgz0JXPkzkndM8lqbAWvcK_jlcyCYdqI6MYHzvkYc8Ka25ep1pS8Vf0hXusA-LsHOwLVwFobLCq-PlfDRiit26vsZFjkkkbaq-e6UfCAgRy_3M0Bbx9Gm5UxlUi4UChlBJPBkxpG6WczQqROlXxkxhCWYxrqv-ICWms&csui=3>:
3. 3. idle_in_transaction_session_timeout<https://www.google.com/search?sca_esv=644c802b3ab9190b&cs=0&sxsrf=AHTn8zpzk_OZQcHpispy0ijqrWSDrMlELA%3A1745001204291&q=idle_in_transaction_session_timeout&sa=X&ved=2ahUKEwiawuyGnOKMAxWLK1kFHRteEKcQxccNegQIChAB&mstk=AUtExfBOMKRWfH0cGgz0JXPkzkndM8lqbAWvcK_jlcyCYdqI6MYHzvkYc8Ka25ep1pS8Vf0hXusA-LsHOwLVwFobLCq-PlfDRiit26vsZFjkkkbaq-e6UfCAgRy_3M0Bbx9Gm5UxlUi4UChlBJPBkxpG6WczQqROlXxkxhCWYxrqv-ICWms&csui=3>:

Then dump the client-side timeout configuration thru Node.js code

Node.js
client.query(sql, { timeout: <milliseconds> }).
2. Wrap Queries with a try...catch Block:

4. something like this should work thru javascript Node.js
const { Pool } = require('pg');

const pool = new Pool({
connectionString: 'your_connection_string'
});

async function executeQuery(sql) {
const client = await pool.connect();
try {
const result = await client.query(sql, { timeout: 5000 }); // Timeout after 5 seconds
return result;
} catch (err) {
console.error('Error executing query:', err);
throw err; // Re-throw to propagate the error
} finally {
client.release();
}
}

if none of the server timeout parameters or client side timeout debug statements help you identify
you may need to install pg_timeout extension to Postgres
https://github.com/pierreforstmann/pg_timeout

HTH
________________________________
From: Mansky, Edmund J. (GSFC-671.0)[ADNET Affiliate] <edmund(dot)j(dot)mansky(at)nasa(dot)gov>
Sent: Friday, April 18, 2025 1:28 PM
To: pgsql-general(at)postgresql(dot)org <pgsql-general(at)postgresql(dot)org>
Cc: Mansky, Edmund J. (GSFC-671.0)[ADNET Affiliate] <edmund(dot)j(dot)mansky(at)nasa(dot)gov>
Subject: Why is an error not thrown when the time exceeds the lock timeout for an ExclusiveLock on a transaction ?

Hi Everyone,

I have an SQL that updates a table in our database. The SQL in question is:

UPDATE public.sum_partn_alloc AS T1 SET effective_date = to_char(CURRENT_TIMESTAMP + interval '6 days', 'YYYYMMDDHH24MI') FROM public.sum_main AS T2

WHERE T1.status != 8 AND (T1.effective_date = '0' OR CURRENT_TIMESTAMP + interval '3 days' > to_timestamp(T1.effective_date, 'YYYYMMDDHH24MI'))

AND T1.ds_index IN (1741052236) AND T1.ds_index = T2.ds_index AND T2.online_status = 'Y'

where the number in BOLD in the list can be just a single number, or a long list of numbers (20-50 or so).

Normally, this SQL is executed without problem thousands of times a day.

Then, we see at certain times when that SQL exceeds the timeout for the ShareLock on the transaction. No error is thrown from the DB and processing on the driving Python script stops.

I've seen this in the case of a single number in the list, or a long list of 20-50 numbers or so.

I see in the log at that point : process 683860 still waiting for ShareLock on transaction 492777941 after 1000.140 ms

while updating tuple (1282991,25) in relation "sum_partn_alloc"

The Postgres server (12.22), running on RHEL 8.10 is configured with a default lock timeout of 1 sec.

Why is Postgres not throwing an error when the ShareLock time has exceeded 1 sec. ?

The Python script driving this SQL never gets an error from Postgres in it's exception block, and hence the script simply stops at that point and processing stops.

Are there other parameters one can set in the configuration that would result in the Python script getting an error from Postgres so that this case can be handled and processing continues ?

Any ideas or tips would be greatly appreciated.

Thanks,

--Ed

[signature_1379146699]

Ed Mansky

Software Engineer

SDAC / VSO

NASA Goddard Space Flight Center

ADNET SYSTEMS, Inc.

8800 Greenbelt Rd, Greenbelt MD 20771

edmund(dot)j(dot)mansky(at)nasa(dot)gov<mailto:edmund(dot)j(dot)mansky(at)nasa(dot)gov>

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Jeremy Schneider 2025-04-18 21:18:17 verify checksums online
Previous Message Martin Gainty 2025-04-18 18:49:15 Re: Why is an error not thrown when the time exceeds the lock timeout for an ExclusiveLock on a transaction ?