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
|
4
|
5
|
6
|
7
|
8
|
9
(2) |
10
|
11
|
12
|
13
|
14
|
15
|
16
(2) |
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
|
|
|
|
|
From: 鈴木 幸市 <ko...@in...> - 2014-09-16 02:51:00
|
Thanks a lot for the update. This will be committed in the earliest occasion. Best; --- Koichi Suzuki 2014/09/16 11:35、Wang Diancheng <dia...@gm...> のメール: > Hi, > > it lead to following statement crash: > > clean connection to all force for regression; > > patch attached. > > diff --git a/src/backend/pgxc/pool/poolcomm.c b/src/backend/pgxc/pool/poolcomm.c > index 02d67f3..b775649 100644 > --- a/src/backend/pgxc/pool/poolcomm.c > +++ b/src/backend/pgxc/pool/poolcomm.c > @@ -778,7 +778,7 @@ pool_recvpids(PoolPort *port, int **pids) > { > int n; > memcpy(&n, buf + 5 + i * sizeof(int), sizeof(int)); > - *pids[i] = ntohl(n); > + (*pids)[i] = ntohl(n); > } > return n32; > > ------------------------------------------------------------------------------ > Want excitement? > Manually upgrade your production database. > When you want reliability, choose Perforce. > Perforce version control. Predictably reliable. > http://pubads.g.doubleclick.net/gampad/clk?id=157508191&iu=/4140/ostg.clktrk_______________________________________________ > Postgres-xc-developers mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-developers |
From: Wang D. <dia...@gm...> - 2014-09-16 02:36:14
|
Hi, it lead to following statement crash: clean connection to all force for regression; patch attached. |
From: Michael P. <mic...@gm...> - 2014-09-09 11:50:45
|
On Tue, Sep 9, 2014 at 4:30 PM, Luyuanfei <ka...@hu...> wrote: > /* > * cost_remotequery > * As of now the function just sets the costs to 0 to make this path the > * cheapest. > * PGXC_TODO: Ideally, we should estimate the costs of network transfer from > * datanodes and any datanode costs involved. > */ > It's very useful to some statement such as join or subquery. In short, no. And I am not aware of anybody working in this area for this project. Any patch would need a paper or research made in this area to start on good basis IMO. Even without researches in this area, I imagine that we'd finish for sure with a set of cost parameters that can be set per-node (you don't want to have the same network cost for a node on local network and another one thousands of miles away) and that the planner could use those parameters when evaluating a plan using an equal qual on an index used for hash. Another problem is that we need a good idea of how they compare to other cost parameters to avoid unbalanced plans. The issue remaining is then what are those parameters, and what they symbolize. > When you want reliability, choose Perforce. Not much sure about that. Git is more appealing with its decentralized system. -- Michael |
From: Luyuanfei <ka...@hu...> - 2014-09-09 07:31:11
|
There is a comment about function cost_remotequery as following: /* * cost_remotequery * As of now the function just sets the costs to 0 to make this path the * cheapest. * PGXC_TODO: Ideally, we should estimate the costs of network transfer from * datanodes and any datanode costs involved. */ It's very useful to some statement such as join or subquery. Yours sincerely Kaka Lu |