Re: disabling log_rotation_age feature. - Mailing list pgsql-docs

From David G Johnston
Subject Re: disabling log_rotation_age feature.
Date
Msg-id 1402554501237-5806947.post@n5.nabble.com
Whole thread Raw
In response to disabling log_rotation_age feature.  (Tomonari Katsumata <katsumata.tomonari@po.ntts.co.jp>)
Responses Re: disabling log_rotation_age feature.
List pgsql-docs
Tomonari Katsumata-2 wrote
> Hi,
>
> I'm reading about log_rotation_age.
> And I noticed that the setting for disabling the feature is not clear.
>
>
> The document tells us to set it to ZERO if we want to disable the feature.
> However, the feature would be disabled if we set it less than one minute.
>
> [Example]
> *******************************************
> $ grep log_rotation_age ${PGDATA}/postgresql.conf
> #log_rotation_age = 1d # Automatic rotation of logfiles will
> log_rotation_age = 10s # Automatic rotation of logfiles will
>
> $ psql postgres
> psql (9.5devel)
> Type "help" for help.
>
> postgres=# show log_rotation_age ;
> log_rotation_age
> ------------------
> 0
> (1 row)
> *******************************************
>
> I think this fact should be written on document for users.
>
> [Fix Example]
> *********
> After this many minutes have elapsed, a new log file will
> - be created. Set to zero to disable time-based creation of
> + be created. Set to zero or less than one minute to disable time-based
> new log files.
> *********

I suggest documenting, if correct, that maximum resolution is minutes
(rounding down) and thus any sub-1-minute value will be interpreted as zero
and disable the feature.

David J.




--
View this message in context:
http://postgresql.1045698.n5.nabble.com/disabling-log-rotation-age-feature-tp5806936p5806947.html
Sent from the PostgreSQL - docs mailing list archive at Nabble.com.


pgsql-docs by date:

Previous
From: Tomonari Katsumata
Date:
Subject: disabling log_rotation_age feature.
Next
From: David G Johnston
Date:
Subject: Re: disabling log_rotation_age feature.