Re: Is CREATE INDEX dependent on the session?

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Laurenz Albe <laurenz(dot)albe(at)cybertec(dot)at>
Cc: Ilya Priven <ilya(dot)konstantinov(at)gmail(dot)com>, pgsql-docs(at)lists(dot)postgresql(dot)org
Subject: Re: Is CREATE INDEX dependent on the session?
Date: 2023-09-28 14:06:29
Message-ID: 947974.1695909989@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-docs

Laurenz Albe <laurenz(dot)albe(at)cybertec(dot)at> writes:
> On Wed, 2023-09-27 at 11:23 -0400, Ilya Priven wrote:
>> Would it warrant a clarification in the documentation:
>> - Whether CREATE INDEX is aborted if the session is disconnected, assuming it's not in a transaction?

> It is aborted as soon as the server realizes that the client is gone, which may
> take a while (see the keepalive parameters and "client_connection_check_interval").

Note that unless you change client_connection_check_interval to
a nondefault value, the server will not notice that the client
is gone until it tries to send or receive data. So a command
like CREATE INDEX will typically run to completion even if the
client drops the connection. I don't think keepalive settings
affect this --- they might cause the kernel to realize that the
connection is lost earlier than it otherwise would, but that
doesn't result in an automatic kill of the server process.

> Do you want to propose a patch?

There are enough environmental dependencies involved here that
any simple description is likely to contain lies. So I'm
hesitant to try to put anything about it into the docs.

regards, tom lane

In response to

Browse pgsql-docs by date

  From Date Subject
Next Message Kirk Parker 2023-09-28 14:32:24 Re: `pg_restore --if-exists` clarification
Previous Message Bruce Momjian 2023-09-28 13:55:43 Re: Make SSPI documentation clearer