public inbox for [email protected]
help / color / mirror / Atom feedFrom: Jim Jones <[email protected]>
To: Kirill Gavrilov <[email protected]>
Cc: Kirill Reshke <[email protected]>
Cc: Andrey M. Borodin <[email protected]>
Cc: Euler Taveira <[email protected]>
Cc: [email protected]
Subject: Re: Truncate logs by max_log_size
Date: Fri, 29 Nov 2024 20:12:44 +0100
Message-ID: <[email protected]> (raw)
In-Reply-To: <CA+E0NR7=V57gVR_-CHs-0W0XL7UrKdyGfT=ZiQcuCdsDcjN94g@mail.gmail.com>
References: <CA+E0NR4S+NC6+QHyY_vUuQZMzLhKqczMx-jJVqtjAxF6+=JwAA@mail.gmail.com>
<[email protected]>
<[email protected]>
<[email protected]>
<CA+E0NR4=J-pgqEAV2weymygGmk1ePym45m2AcGyi2hpa9xRvBg@mail.gmail.com>
<CALdSSPiq+x9pRVYvYtddTQsL8=ZMvob+vSv5mHEXbe0aoPWGig@mail.gmail.com>
<[email protected]>
<CA+E0NR6tnLDanSNwcqZM_-ReBXitAOFsoaBAZBqXYEx0Di+fwQ@mail.gmail.com>
<[email protected]>
<CA+E0NR7=V57gVR_-CHs-0W0XL7UrKdyGfT=ZiQcuCdsDcjN94g@mail.gmail.com>
On 29.11.24 12:05, Kirill Gavrilov wrote:
> Setting max_log_size to 0 already disables truncation.
> I changed guc units to bytes, just to make it more human-friendly.
> Did some refactoring and fixed all warnings. Set default value in
> postgresql.conf.
Nice. The patch applies cleanly and the warnings are gone.
A few other things:
IMHO the documentation can be a bit clearer. It says to input the values
in bytes, but the default value is in megabytes.
+ If greater than zero, each query logged is truncated to this
many bytes.
+ Zero disables the setting.
+ Default value is 5MB.
Perhaps something like "If this value is specified without units, it is
taken as bytes." (see wal_keep_size)
And a pedantic note: This hint suggests that you can use TB as unit ..
postgres=# set max_log_size = '1foo';
ERROR: invalid value for parameter "max_log_size": "1foo"
HINT: Valid units for this parameter are "B", "kB", "MB", "GB", and "TB".
.. but it can never be used, as it exceeds the integer range:
postgres=# SET max_log_size = '1TB';
ERROR: invalid value for parameter "max_log_size": "1TB"
HINT: Value exceeds integer range.
Thanks
--
Jim
view thread (2+ messages)
reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Reply to all the recipients using the --to and --cc options:
reply via email
To: [email protected]
Cc: [email protected], [email protected], [email protected], [email protected], [email protected], [email protected]
Subject: Re: Truncate logs by max_log_size
In-Reply-To: <[email protected]>
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox