Re: Limit transaction lifetime

Поиск
Список
Период
Сортировка
От Fabio Ugo Venchiarutti
Тема Re: Limit transaction lifetime
Дата
Msg-id 6d6f34b6-c492-2e64-d43a-8be86b0d8a88@ocado.com
обсуждение исходный текст
Ответ на Limit transaction lifetime  (Andrei Zhidenkov <andrei.zhidenkov@n26.com>)
Ответы Re: Limit transaction lifetime
Список pgsql-general
On 06/03/2020 14:24, Andrei Zhidenkov wrote:
> Is there a way to limit a transaction lifetime in PostgreSQL? I could 
> use `idle_in_transaction_session_timeout` parameter but it applies only 
> to IDLE transactions. However, I want to rollback any transaction that 
> executes more than specified period of time.
> 
> --
> 
> With best regards, Andrei Zhidenkov.

If it's a single command you're trying to limit `SET statement_timeout 
TO <whatever>` should do the trick.


If you want it based on the session's cumulative statement time, off the 
top of my head I can't think of anything in vanilla PG without using 
executor hooks (that requires some coding).


If the queries that worry you are long-lived, you might be able to get 
by with a scheduled process checking against pg_stat_activity (eg: 
age(query_start)) and adding the current query's run-time to some 
per-session total, but it's an highly inaccurate process.




-- 
Regards

Fabio Ugo Venchiarutti
OSPCFC Network Engineering Dpt.
Ocado Technology

-- 


Notice: 
This email is confidential and may contain copyright material of 
members of the Ocado Group. Opinions and views expressed in this message 
may not necessarily reflect the opinions and views of the members of the 
Ocado Group.

If you are not the intended recipient, please notify us 
immediately and delete all copies of this message. Please note that it is 
your responsibility to scan this message for viruses.

References to the 
"Ocado Group" are to Ocado Group plc (registered in England and Wales with 
number 7098618) and its subsidiary undertakings (as that expression is 
defined in the Companies Act 2006) from time to time. The registered office 
of Ocado Group plc is Buildings One & Two, Trident Place, Mosquito Way, 
Hatfield, Hertfordshire, AL10 9UL.



В списке pgsql-general по дате отправления:

Предыдущее
От: Laurenz Albe
Дата:
Сообщение: Re: How to allow users to create and modify tables only in theirown schemas, but with generic table owner
Следующее
От: Ravi Krishna
Дата:
Сообщение: Re: Real application clustering in postgres.