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
(1) |
2
(2) |
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
(5) |
19
|
20
|
21
|
22
|
23
|
24
(4) |
25
(3) |
26
|
27
|
28
|
29
|
30
|
31
(1) |
|
|
From: Pavan D. <pav...@gm...> - 2014-07-24 12:08:54
|
I noticed that we can't specify port number for datanode slave nodes that are different from the master nodes. Is it that way for a good reason? I'm asking before if I need to test this feature on a single node, I would like to run master and slave on the same machine. But since they use the same port number, its not possible to do that. Should we consider supporting different ports for datanode (and coordinator slaves) just like we do for GTM slave? Thanks, Pavan -- Pavan Deolasee http://www.linkedin.com/in/pavandeolasee |
From: Koichi S. <koi...@gm...> - 2014-07-24 05:55:41
|
Thanks a lot for pointing out. Could you submit a patch for this? 2014/07/24 13:09 "Pavan Deolasee" <pav...@gm...>: > Hello All, > > AFAICS that pgxc_ctl uses popen() at many places to execute a command and > sometimes to also parse back the output. I've been chasing a bug that would > cause subsequent reads on the FILE * returned by popen() to return EOF. > After some investigations, it seems that the correct way to close the file > descriptor returned by popen() is to use pclose() which fclose() does not > reset the pipe state properly whereas pclose() does. The current XC code > uses fclose() instead which probably works fine on some platforms such as > Linux, but fails on other such as Mac OSX. > > Should we consider replacing fclose() with pclose() for pipes opened by > popen()? > > Thanks, > Pavan > > -- > Pavan Deolasee > http://www.linkedin.com/in/pavandeolasee > > > ------------------------------------------------------------------------------ > Want fast and easy access to all the code in your enterprise? Index and > search up to 200,000 lines of code with a free copy of Black Duck > Code Sight - the same software that powers the world's largest code > search on Ohloh, the Black Duck Open Hub! Try it now. > http://p.sf.net/sfu/bds > _______________________________________________ > Postgres-xc-developers mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-developers > > |
From: Pavan D. <pav...@gm...> - 2014-07-24 04:07:57
|
Hello All, AFAICS that pgxc_ctl uses popen() at many places to execute a command and sometimes to also parse back the output. I've been chasing a bug that would cause subsequent reads on the FILE * returned by popen() to return EOF. After some investigations, it seems that the correct way to close the file descriptor returned by popen() is to use pclose() which fclose() does not reset the pipe state properly whereas pclose() does. The current XC code uses fclose() instead which probably works fine on some platforms such as Linux, but fails on other such as Mac OSX. Should we consider replacing fclose() with pclose() for pipes opened by popen()? Thanks, Pavan -- Pavan Deolasee http://www.linkedin.com/in/pavandeolasee |