how to cancel a request in progress ?

Started by Jonathan davisalmost 27 years ago2 messagesgeneral
Jump to latest
#1Jonathan davis
haj@idianet.net

hello all

is this possible to cancel a request in progress ?

#2jerome doucerain
jerome.doucerain@chu-nimes.fr
In reply to: Jonathan davis (#1)
Re: [GENERAL] how to cancel a request in progress ?

Jonathan Davis a �crit :

hello all

is this possible to cancel a request in progress ?

It may be interesting to have a look at the programmer's guide Postgres
Signals :
if you want to cancel a request you may kill -SIGINT the backend process
running the request.
In this case, the postmaster and the others backend processes keep on
running.
Jerome