Thread: Re: [COMMITTERS] pgsql: Add new replication mode synchronous_commit = 'write'.
Re: [COMMITTERS] pgsql: Add new replication mode synchronous_commit = 'write'.
From
Fujii Masao
Date:
On Wed, Jan 25, 2012 at 5:35 AM, Jaime Casanova <jaime@2ndquadrant.com> wrote: > On Tue, Jan 24, 2012 at 3:22 PM, Simon Riggs <simon@2ndquadrant.com> wrote: >> Add new replication mode synchronous_commit = 'write'. >> Replication occurs only to memory on standby, not to disk, >> so provides additional performance if user wishes to >> reduce durability level slightly. Adds concept of multiple >> independent sync rep queues. >> >> Fujii Masao and Simon Riggs >> > > i guess, you should add the new value in postgresql.conf too. Yes, I forgot to do that. Patch attached. > just a question, why not add a flush value and make it behave like on? > actually sync rep is on in both cases and having the different names > makes more easy to unserstand what is happening. > i only want to keep on for compatibility but i wouldn't mind if we > remove it in favor of more descriptive names. Also we should add "async" as an alias for "off"? Regards, -- Fujii Masao NIPPON TELEGRAPH AND TELEPHONE CORPORATION NTT Open Source Software Center
Attachment
Re: [COMMITTERS] pgsql: Add new replication mode synchronous_commit = 'write'.
From
Robert Haas
Date:
On Wed, Jan 25, 2012 at 1:23 AM, Fujii Masao <masao.fujii@gmail.com> wrote: > On Wed, Jan 25, 2012 at 5:35 AM, Jaime Casanova <jaime@2ndquadrant.com> wrote: >> On Tue, Jan 24, 2012 at 3:22 PM, Simon Riggs <simon@2ndquadrant.com> wrote: >>> Add new replication mode synchronous_commit = 'write'. >>> Replication occurs only to memory on standby, not to disk, >>> so provides additional performance if user wishes to >>> reduce durability level slightly. Adds concept of multiple >>> independent sync rep queues. >>> >>> Fujii Masao and Simon Riggs >>> >> >> i guess, you should add the new value in postgresql.conf too. > > Yes, I forgot to do that. Patch attached. I think that this would be a lot more clear if we described this as synchronous_commit = remote_write rather than just synchronous_commit = write. Actually, the internal constant is named that way already, but it's not exposed as such to the user. There's a logical hierarchy here: fully async commit ("off") < local flush only ("local") < local flush + remote write (currently "write") < local flush + remote flush (currently "on") < local flush + remote apply All of the levels except for "off" involve waiting for local flush; the higher levels also involve waiting for something on the remote side. But the name of the variable is just synchronous_commit, so I thik that if the word "remote" doesn't appear anywhere in the user-visible parameter name, it's not as clear as it could be. In addition to renaming "write" to "remote_write", I think we might also want to add "remote_flush" as an alias for "on". -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company
Re: [COMMITTERS] pgsql: Add new replication mode synchronous_commit = 'write'.
From
Simon Riggs
Date:
On Wed, Jan 25, 2012 at 1:57 PM, Robert Haas <robertmhaas@gmail.com> wrote: > I think that this would be a lot more clear if we described this as > synchronous_commit = remote_write rather than just synchronous_commit > = write. Actually, the internal constant is named that way already, > but it's not exposed as such to the user. That's something to discuss at the end of the CF when people are less busy and we get more input. It's an easy change whatever we decide to do. -- Simon Riggs http://www.2ndQuadrant.com/ PostgreSQL Development, 24x7 Support, Training & Services
Re: [COMMITTERS] pgsql: Add new replication mode synchronous_commit = 'write'.
From
Fujii Masao
Date:
On Wed, Jan 25, 2012 at 11:12 PM, Simon Riggs <simon@2ndquadrant.com> wrote: > On Wed, Jan 25, 2012 at 1:57 PM, Robert Haas <robertmhaas@gmail.com> wrote: > >> I think that this would be a lot more clear if we described this as >> synchronous_commit = remote_write rather than just synchronous_commit >> = write. Actually, the internal constant is named that way already, >> but it's not exposed as such to the user. > > That's something to discuss at the end of the CF when people are less > busy and we get more input. > > It's an easy change whatever we decide to do. Added this to 9.2 Open Items. Regards, -- Fujii Masao NIPPON TELEGRAPH AND TELEPHONE CORPORATION NTT Open Source Software Center
Re: [COMMITTERS] pgsql: Add new replication mode synchronous_commit = 'write'.
From
Robert Haas
Date:
On Thu, Jan 26, 2012 at 1:21 AM, Fujii Masao <masao.fujii@gmail.com> wrote: > On Wed, Jan 25, 2012 at 11:12 PM, Simon Riggs <simon@2ndquadrant.com> wrote: >> On Wed, Jan 25, 2012 at 1:57 PM, Robert Haas <robertmhaas@gmail.com> wrote: >> >>> I think that this would be a lot more clear if we described this as >>> synchronous_commit = remote_write rather than just synchronous_commit >>> = write. Actually, the internal constant is named that way already, >>> but it's not exposed as such to the user. >> >> That's something to discuss at the end of the CF when people are less >> busy and we get more input. >> >> It's an easy change whatever we decide to do. > > Added this to 9.2 Open Items. OK, so I think it's time to decide what we want to do here. In my view, remote_write seems a lot more clear than write (since someone might otherwise think we were talking about a local write) and it has the additional advantage of matching the internal naming convention - surely, if it's write to call it SYNCHRONOUS_COMMIT_REMOTE_WRITE inside the system, then there's not really much reason to drop the word "remote" on the user-visible side of things. However, I just work here. Does anyone want to make a counter-argument? -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company
Re: [COMMITTERS] pgsql: Add new replication mode synchronous_commit = 'write'.
From
"Kevin Grittner"
Date:
Robert Haas <robertmhaas@gmail.com> wrote: > In my view, remote_write seems a lot more clear than write +1 I sure didn't understand it to mean remote_write when I read the subject line. -Kevin
Re: [COMMITTERS] pgsql: Add new replication mode synchronous_commit = 'write'.
From
Thom Brown
Date:
On 13 April 2012 19:15, Kevin Grittner <Kevin.Grittner@wicourts.gov> wrote: > Robert Haas <robertmhaas@gmail.com> wrote: > >> In my view, remote_write seems a lot more clear than write > > +1 > > I sure didn't understand it to mean remote_write when I read the > subject line. Whatever this option value is named, it needs to be referenced in the postgresql.conf comment for this option, as it isn't currently. I have a question though. What happens when this is set to "write" (or "remote_write" as proposed) but it's being used on a standalone primary? At the moment it's not documented what level of guarantee this would provide. -- Thom
Re: [COMMITTERS] pgsql: Add new replication mode synchronous_commit = 'write'.
From
Guillaume Lelarge
Date:
On 04/13/2012 08:15 PM, Kevin Grittner wrote: > Robert Haas<robertmhaas@gmail.com> wrote: > >> In my view, remote_write seems a lot more clear than write > > +1 > > I sure didn't understand it to mean remote_write when I read the > subject line. > Neither did I. So definitely +1. -- Guillaume http://www.postgresql.fr http://dalibo.com
Re: [COMMITTERS] pgsql: Add new replication mode synchronous_commit = 'write'.
From
Fujii Masao
Date:
On Sat, Apr 14, 2012 at 4:57 AM, Guillaume Lelarge <guillaume@lelarge.info> wrote: > On 04/13/2012 08:15 PM, Kevin Grittner wrote: >> >> Robert Haas<robertmhaas@gmail.com> wrote: >> >>> In my view, remote_write seems a lot more clear than write >> >> >> +1 >> >> I sure didn't understand it to mean remote_write when I read the >> subject line. >> > > Neither did I. So definitely +1. +1 Patch attached. Regards, -- Fujii Masao
Attachment
Re: [COMMITTERS] pgsql: Add new replication mode synchronous_commit = 'write'.
From
Robert Haas
Date:
On Sat, Apr 14, 2012 at 10:28 AM, Fujii Masao <masao.fujii@gmail.com> wrote: > On Sat, Apr 14, 2012 at 4:57 AM, Guillaume Lelarge > <guillaume@lelarge.info> wrote: >> On 04/13/2012 08:15 PM, Kevin Grittner wrote: >>> Robert Haas<robertmhaas@gmail.com> wrote: >>>> In my view, remote_write seems a lot more clear than write >>> >>> +1 >>> >>> I sure didn't understand it to mean remote_write when I read the >>> subject line. >> >> Neither did I. So definitely +1. > > +1 > > Patch attached. Thanks. Committed. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company
Re: [COMMITTERS] pgsql: Add new replication mode synchronous_commit = 'write'.
From
Fujii Masao
Date:
On Sat, Apr 14, 2012 at 4:16 AM, Thom Brown <thom@linux.com> wrote: > On 13 April 2012 19:15, Kevin Grittner <Kevin.Grittner@wicourts.gov> wrote: >> Robert Haas <robertmhaas@gmail.com> wrote: >> >>> In my view, remote_write seems a lot more clear than write >> >> +1 >> >> I sure didn't understand it to mean remote_write when I read the >> subject line. > > Whatever this option value is named, it needs to be referenced in the > postgresql.conf comment for this option, as it isn't currently. Yes. The patch I've posted does this. > I have a question though. What happens when this is set to "write" > (or "remote_write" as proposed) but it's being used on a standalone > primary? At the moment it's not documented what level of guarantee > this would provide. http://www.postgresql.org/docs/devel/static/warm-standby.html#SYNCHRONOUS-REPLICATION-HA ----------------- Commits made when synchronous_commit is set to on or write will wait until the synchronous standby responds. The response may never occur if the last, or only, standby should crash. ----------------- Is this description not enough? If not enough, how should we change the document? Regards, -- Fujii Masao
Re: [COMMITTERS] pgsql: Add new replication mode synchronous_commit = 'write'.
From
Thom Brown
Date:
On 14 April 2012 15:58, Fujii Masao <masao.fujii@gmail.com> wrote: > On Sat, Apr 14, 2012 at 4:16 AM, Thom Brown <thom@linux.com> wrote: >> I have a question though. What happens when this is set to "write" >> (or "remote_write" as proposed) but it's being used on a standalone >> primary? At the moment it's not documented what level of guarantee >> this would provide. > > http://www.postgresql.org/docs/devel/static/warm-standby.html#SYNCHRONOUS-REPLICATION-HA > ----------------- > Commits made when synchronous_commit is set to on or write will > wait until the synchronous standby responds. The response may > never occur if the last, or only, standby should crash. > ----------------- > > Is this description not enough? If not enough, how should we change > the document? No, that's not what I was referring to. If you don't have a standby (i.e. a single, isolated database cluster with no replication), and its synchronous_commit is set to 'remote_write', what effect does that have? -- Thom
Re: [COMMITTERS] pgsql: Add new replication mode synchronous_commit = 'write'.
From
Fujii Masao
Date:
On Sun, Apr 15, 2012 at 12:13 AM, Thom Brown <thom@linux.com> wrote: > On 14 April 2012 15:58, Fujii Masao <masao.fujii@gmail.com> wrote: >> On Sat, Apr 14, 2012 at 4:16 AM, Thom Brown <thom@linux.com> wrote: >>> I have a question though. What happens when this is set to "write" >>> (or "remote_write" as proposed) but it's being used on a standalone >>> primary? At the moment it's not documented what level of guarantee >>> this would provide. >> >> http://www.postgresql.org/docs/devel/static/warm-standby.html#SYNCHRONOUS-REPLICATION-HA >> ----------------- >> Commits made when synchronous_commit is set to on or write will >> wait until the synchronous standby responds. The response may >> never occur if the last, or only, standby should crash. >> ----------------- >> >> Is this description not enough? If not enough, how should we change >> the document? > > No, that's not what I was referring to. If you don't have a standby > (i.e. a single, isolated database cluster with no replication), and > its synchronous_commit is set to 'remote_write', what effect does that > have? It's the same effect as 'on' and 'local' do, i.e., transaction commit waits for only local WAL flush. This behavior is not documented explicitly... How should we change the document? What about adding the following into the explanation of synchronous_commit parameter (maybe the end of second paragraph of that)? ----------------- If synchronous_standby_names is not set, on, remote_write and local provide the same synchronization level; transaction commit only waits for local flush. ----------------- Regards, -- Fujii Masao
Re: [COMMITTERS] pgsql: Add new replication mode synchronous_commit = 'write'.
From
Thom Brown
Date:
On 16 April 2012 17:21, Fujii Masao <masao.fujii@gmail.com> wrote: > On Sun, Apr 15, 2012 at 12:13 AM, Thom Brown <thom@linux.com> wrote: >> No, that's not what I was referring to. If you don't have a standby >> (i.e. a single, isolated database cluster with no replication), and >> its synchronous_commit is set to 'remote_write', what effect does that >> have? > > It's the same effect as 'on' and 'local' do, i.e., transaction commit waits > for only local WAL flush. This behavior is not documented explicitly... > How should we change the document? What about adding the following > into the explanation of synchronous_commit parameter (maybe the end > of second paragraph of that)? > > ----------------- > If synchronous_standby_names is not set, on, remote_write and local > provide the same synchronization level; transaction commit only waits for > local flush. > ----------------- Yes, that sounds fine. -- Thom
Re: [COMMITTERS] pgsql: Add new replication mode synchronous_commit = 'write'.
From
Fujii Masao
Date:
On Tue, Apr 17, 2012 at 9:52 PM, Thom Brown <thom@linux.com> wrote: > On 16 April 2012 17:21, Fujii Masao <masao.fujii@gmail.com> wrote: >> On Sun, Apr 15, 2012 at 12:13 AM, Thom Brown <thom@linux.com> wrote: >>> No, that's not what I was referring to. If you don't have a standby >>> (i.e. a single, isolated database cluster with no replication), and >>> its synchronous_commit is set to 'remote_write', what effect does that >>> have? >> >> It's the same effect as 'on' and 'local' do, i.e., transaction commit waits >> for only local WAL flush. This behavior is not documented explicitly... >> How should we change the document? What about adding the following >> into the explanation of synchronous_commit parameter (maybe the end >> of second paragraph of that)? >> >> ----------------- >> If synchronous_standby_names is not set, on, remote_write and local >> provide the same synchronization level; transaction commit only waits for >> local flush. >> ----------------- > > Yes, that sounds fine. Okay, patch attached. Regards, -- Fujii Masao
Attachment
Re: [COMMITTERS] pgsql: Add new replication mode synchronous_commit = 'write'.
From
Robert Haas
Date:
On Tue, Apr 17, 2012 at 3:29 PM, Fujii Masao <masao.fujii@gmail.com> wrote: > Okay, patch attached. Committed. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company