Re: Startup scripts - Use -m fast or smart? - Mailing list pgsql-general

From Albe Laurenz
Subject Re: Startup scripts - Use -m fast or smart?
Date
Msg-id D960CB61B694CF459DCFB4B0128514C2C4D724@exadv11.host.magwien.gv.at
Whole thread Raw
In response to Startup scripts - Use -m fast or smart?  (Glyn Astill <glynastill@yahoo.co.uk>)
Responses Re: Startup scripts - Use -m fast or smart?
List pgsql-general
Glyn Astill wrote:
> I've just changed my startup scripts to use the linux one supplied in
> contrib.
>
> I noticed this uses the "-m fast" argument for start and stop.
>
> Before I setup the scripts I was using "-m smart" to make sure all
> queries were finished before shutting dowm on all but my WAL slave.
>
> I was going to change these to -m smart just to be safe, however I
> just wanted to check if there was any reason not to do this?

If you have "pg_ctl stop -m smart" in your shutdown script, this
will prevent your host from shutting down as long as somebody is still
connected to the database, even if the connections are idle.

This is most likely *not* what you want.

-m fast is the correct thing for server shutdown. It will do no damage
as all active transactions will be rolled back.

If there are database transactions that you do not want to interrupt,
the best approach is not to shutdown the database server.

Yours,
Laurenz Albe

pgsql-general by date:

Previous
From: Michael Glaesemann
Date:
Subject: Re: Read/Write restriction mechanism
Next
From: Glyn Astill
Date:
Subject: Re: Startup scripts - Use -m fast or smart?