Re: Standbys using commas in application_name cannot become sync nodes - Mailing list pgsql-bugs

From Andres Freund
Subject Re: Standbys using commas in application_name cannot become sync nodes
Date
Msg-id 20160214155708.GD9490@awork2.anarazel.de
Whole thread Raw
In response to Re: Standbys using commas in application_name cannot become sync nodes  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: Standbys using commas in application_name cannot become sync nodes
List pgsql-bugs
On 2016-02-14 10:51:01 -0500, Tom Lane wrote:
> Michael Paquier <michael.paquier@gmail.com> writes:
> > Commas are authorized characters in application_name for a node in
> > recovery, however this overlaps with the fact that
> > synchronous_standby_names uses commas as a separator for each node
> > name. So, if a standby node uses a comma in its name, even if its name
> > is set in s_s_names it can never become a synchronous node because
> > SplitIdentifierString() splits this parameter with only a comma.
>
> > Even if I have never seen an standby using a comma in its
> > application_name, this is a bug, and here are a couple of things that
> > we could do regarding it:
> > 1) Do not care, who is actually going to use a comma in application_name?!
> > 2) Forbid the use of commas in application_name
> > 3) Enhaunce a bit s_s_names splitting so as it can consider
> > backslash+comma as part of a standby name. In short by setting
> > s_s_names = 'foo\,bar', a standby with name 'foo,bar' would be a sync
> > node.
> > 4) Document the limitation and discourage the use of commas in application_name
>
> (3) seems like a mess with likely side-effects on other uses of
> SplitIdentifierString.  I'd vote for (2) or (4).

I know a number of applications written by clients, without my
encouragement, that use application name to provide e.g. the application
user triggering queries. At least two had used commas at some point. So
I'm disinclined to go with 2).

Andres

pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: Standbys using commas in application_name cannot become sync nodes
Next
From: Jim.Nasby@BlueTreble.com
Date:
Subject: BUG #13960: plpython fails with certain function names