From: | Robert Haas <robertmhaas(at)gmail(dot)com> |
---|---|
To: | Beena Emerson <memissemerson(at)gmail(dot)com> |
Cc: | tushar <tushar(dot)ahuja(at)enterprisedb(dot)com>, Prabhat Sahu <prabhat(dot)sahu(at)enterprisedb(dot)com>, Ashutosh Sharma <ashu(dot)coek88(at)gmail(dot)com>, Jim Nasby <Jim(dot)Nasby(at)bluetreble(dot)com>, Kuntal Ghosh <kuntalghosh(dot)2007(at)gmail(dot)com>, Andres Freund <andres(at)anarazel(dot)de>, "pgsql-hackers(at)postgresql(dot)org" <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: increasing the default WAL segment size |
Date: | 2017-03-17 11:50:26 |
Message-ID: | CA+TgmoZ=W_UWM+k3KFPd-ORrDGVWyVUry+0QHC3ShQ4Vc9pTvw@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Fri, Mar 17, 2017 at 2:08 AM, Beena Emerson <memissemerson(at)gmail(dot)com> wrote:
> The option was intended to only accept values in MB as the original config
> --with-wal-segsize option, unfortunately, the patch does not throw error as
> in the config option when the units are specified.
Yeah, you want to use strtol(), so that you can throw an error if
*endptr isn't '\0'.
> Error with config option --with-wal-segsize=1MB
> configure: error: Invalid WAL segment size. Allowed values are
> 1,2,4,8,16,32,64.
>
> Should we imitate this behaviour and just add a check to see if it only
> contains numbers? or would it be better to allow the use of the units and
> make appropriate code changes?
I think just restricting it to numeric values would be fine. If
somebody wants to do the work to make it accept a unit suffix, I don't
have a problem with that, but it doesn't seem like a must-have.
--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
From | Date | Subject | |
---|---|---|---|
Next Message | Yugo Nagata | 2017-03-17 11:57:23 | Re: [POC] hash partitioning |
Previous Message | Michael Paquier | 2017-03-17 11:46:24 | Re: [patch] reorder tablespaces in basebackup tar stream for backup_label |