Re: [GENERAL] BDR replication port

Поиск
Список
Период
Сортировка
От Alvaro Aguayo Garcia-Rada
Тема Re: [GENERAL] BDR replication port
Дата
Msg-id 320042726.212460.1503699803230.JavaMail.zimbra@opensysperu.com
обсуждение исходный текст
Ответ на [GENERAL] BDR replication port  ("Zhu, Joshua" <jzhu@vormetric.com>)
Ответы Re: [GENERAL] BDR replication port
Список pgsql-general
Just a guess: How did you blocked the port? Depending on that, you could be blocking only new connections, but
connectionsalready established would continue to transmit data; remember BDR only reconnects when connection is lost. 

Alvaro Aguayo
Jefe de Operaciones
Open Comb Systems E.I.R.L.

Oficina: (+51-1) 3377813 | RPM: #034252 / (+51) 995540103  | RPC: (+51) 954183248
Website: www.ocs.pe

----- Original Message -----
From: "Zhu, Joshua" <jzhu@vormetric.com>
To: "PostgreSql-general" <pgsql-general@postgresql.org>
Sent: Friday, 25 August, 2017 16:49:44
Subject: [GENERAL] BDR replication port

Hi, I am experimenting how network configuration impacts BDR replication, ran into something that I can't explain, and
wonderif someone can shed light.  Here it goes: 

With a four node BDR group configured and running (all using default port 5432), I purposely blocked port 5432 on one
ofthe node in the group, and was expecting to see changes on other nodes stop being replicated to this node, but that's
not what happened. 

Shell commands show that the port was indeed blocked  (In the following example session, the port 5432 is blocked on
10.3.122.31,but open on 10.3.122.21): 

% nc -v --send-only 10.3.122.21 5432 </dev/null
Ncat: Version 6.40 ( http://nmap.org/ncat )
Ncat: Connected to 10.3.122.21:5432.
Ncat: 0 bytes sent, 0 bytes received in 0.00 seconds.

% nc -v --send-only 10.3.122.31 5432 </dev/null
Ncat: Version 6.40 ( http://nmap.org/ncat )
Ncat: Connection timed out.

% psql -h 10.3.122.21 mydb
psql (9.4.10)
Type "help" for help.
mydb=#

% psql -h 10.3.122.31 mydb
psql: could not connect to server: Connection timed out
        Is the server running on host "10.3.122.31" and accepting
        TCP/IP connections on port 5432?

At this state, I tried insertion and update on node 10.3.122.21, and all of which were replicated to node 10.3.122.31.
However,attempt to create a new table on node 10.3.122.21 was stuck (as expected) until the port 5432 on 10.3.122.31
openedagain. 

So my question is, is there another port other than port 5432 that BDR uses for replication? If not, how could changes
bereplicated to 10.3.122.31 when its port 5432 was blocked? 

Thanks,


В списке pgsql-general по дате отправления:

Предыдущее
От: "Zhu, Joshua"
Дата:
Сообщение: [GENERAL] BDR replication port
Следующее
От: Dave Cramer
Дата:
Сообщение: Re: [GENERAL] jdbc driver vis Release 10