You can subscribe to this list here.
2010 |
Jan
|
Feb
|
Mar
|
Apr
(10) |
May
(17) |
Jun
(3) |
Jul
|
Aug
|
Sep
(8) |
Oct
(18) |
Nov
(51) |
Dec
(74) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2011 |
Jan
(47) |
Feb
(44) |
Mar
(44) |
Apr
(102) |
May
(35) |
Jun
(25) |
Jul
(56) |
Aug
(69) |
Sep
(32) |
Oct
(37) |
Nov
(31) |
Dec
(16) |
2012 |
Jan
(34) |
Feb
(127) |
Mar
(218) |
Apr
(252) |
May
(80) |
Jun
(137) |
Jul
(205) |
Aug
(159) |
Sep
(35) |
Oct
(50) |
Nov
(82) |
Dec
(52) |
2013 |
Jan
(107) |
Feb
(159) |
Mar
(118) |
Apr
(163) |
May
(151) |
Jun
(89) |
Jul
(106) |
Aug
(177) |
Sep
(49) |
Oct
(63) |
Nov
(46) |
Dec
(7) |
2014 |
Jan
(65) |
Feb
(128) |
Mar
(40) |
Apr
(11) |
May
(4) |
Jun
(8) |
Jul
(16) |
Aug
(11) |
Sep
(4) |
Oct
(1) |
Nov
(5) |
Dec
(16) |
2015 |
Jan
(5) |
Feb
|
Mar
(2) |
Apr
(5) |
May
(4) |
Jun
(12) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(4) |
2019 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
|
1
|
2
|
3
(7) |
4
|
5
(1) |
6
|
7
|
8
|
9
|
10
|
11
|
12
(4) |
13
(2) |
14
|
15
|
16
|
17
|
18
|
19
(2) |
20
(4) |
21
(1) |
22
|
23
|
24
|
25
(1) |
26
(6) |
27
(1) |
28
|
29
|
30
(5) |
31
(3) |
|
|
|
|
|
From: Michael P. <mic...@gm...> - 2011-10-27 04:40:22
|
Hi all, pgxc_node_name is used in postgresql.conf for XC for a node to identify itself. Now that node DDL is in place, I was wondering if it could be possible to remove that from the GUC list and add it in pgxc_node. There is however some side-effect if this is done. Now pgxc_node_name is used at postmaster startup to register the node on GTM. However, node registration has been added 1 year and a half ago (already) to keep a track of nodes connecting to the cluster. But now that nodes are managed through catalogs, it doesn't look that much useful. Adding the node-self identification will require a new column in pgxc_node, let's say called node_isself, using a boolean value. And CREATE/ALTER NODE will be extended with a keyword SELF to identify a node self. This new keyword is applicable on all nodes. Ex: CREATE NODE coord WITH ( [SELF | NOT SELF ] ) ALTER NODE coord SET [ SELF | NOT SELF ]; pros: - remaining connection parameters in postgresql.conf file are GTM-related - consistency in node management cons: - node registration has to be removed Any opinions on that? -- Michael Paquier http://michael.otacoo.com |