You can subscribe to this list here.
| 2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
(6) |
Sep
|
Oct
(19) |
Nov
(1) |
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2011 |
Jan
(12) |
Feb
(1) |
Mar
(4) |
Apr
(4) |
May
(32) |
Jun
(12) |
Jul
(11) |
Aug
(1) |
Sep
(6) |
Oct
(3) |
Nov
|
Dec
(10) |
| 2012 |
Jan
(11) |
Feb
(1) |
Mar
(3) |
Apr
(25) |
May
(53) |
Jun
(38) |
Jul
(103) |
Aug
(54) |
Sep
(31) |
Oct
(66) |
Nov
(77) |
Dec
(20) |
| 2013 |
Jan
(91) |
Feb
(86) |
Mar
(103) |
Apr
(107) |
May
(25) |
Jun
(37) |
Jul
(17) |
Aug
(59) |
Sep
(38) |
Oct
(78) |
Nov
(29) |
Dec
(15) |
| 2014 |
Jan
(23) |
Feb
(82) |
Mar
(118) |
Apr
(101) |
May
(103) |
Jun
(45) |
Jul
(6) |
Aug
(10) |
Sep
|
Oct
(32) |
Nov
|
Dec
(9) |
| 2015 |
Jan
(3) |
Feb
(5) |
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
(9) |
Aug
(4) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
| 2016 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
|
|
|
1
(15) |
2
(10) |
3
(2) |
|
4
(6) |
5
|
6
(1) |
7
(23) |
8
|
9
|
10
|
|
11
|
12
(2) |
13
|
14
|
15
|
16
(2) |
17
(2) |
|
18
|
19
|
20
(1) |
21
(2) |
22
(3) |
23
(2) |
24
(5) |
|
25
(2) |
26
(3) |
27
(4) |
28
(6) |
29
(9) |
30
(3) |
31
|
|
From: Pavan D. <pav...@gm...> - 2014-05-12 16:22:12
|
Sent from my iPhone > On 12-May-2014, at 8:51 pm, Aaron Jackson <aja...@re...> wrote: > > This morning I came in and connected to my coordinator. I issued a query to count table A and this succeeded. I then asked it to count table B and it failed with "Failed to get pooled connections" - I did an explain on both tables and this is what it told me.. > > explain select count(*) from tableA; > > Aggregate (cost=2.50..2.51 rows=1 width=0) > -> Data Node Scan on "__REMOTE_GROUP_QUERY__" (cost=0.00..0.00 rows=1000 width=0) > Node/s: node_pgs01_1, node_pgs02_1, node_pgs03_1 > (3 rows) > > explain select count(*) from tableB; > > Aggregate (cost=2.50..2.51 rows=1 width=0) > -> Data Node Scan on "__REMOTE_GROUP_QUERY__" (cost=0.00..0.00 rows=1000 width=0) > Node/s: node_pgs01_1, node_pgs01_1, node_pgs02_1, node_pgs01_1, node_pgs03_1, node_pgs01_1 > (3 rows) > > I've seen this twice now, so I figured that maybe the pool needed to be reloaded... so I issued pgxc_pool_reload() but that did not help. Restarting the coordinator did not change anything, so it appears to be that the metadata for table B is bad? No nodes have been added or removed since this table was created. > > Any thoughts? > Did you check if all the nodes are running fine ? Thanks, Pavan > Aaron > ------------------------------------------------------------------------------ > "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE > Instantly run your Selenium tests across 300+ browser/OS combos. > Get unparalleled scalability from the best Selenium testing platform available > Simple to use. Nothing to install. Get started now for free." > http://p.sf.net/sfu/SauceLabs > _______________________________________________ > Postgres-xc-general mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-general |
|
From: Aaron J. <aja...@re...> - 2014-05-12 15:21:53
|
This morning I came in and connected to my coordinator. I issued a query to count table A and this succeeded. I then asked it to count table B and it failed with "Failed to get pooled connections" - I did an explain on both tables and this is what it told me..
explain select count(*) from tableA;
Aggregate (cost=2.50..2.51 rows=1 width=0)
-> Data Node Scan on "__REMOTE_GROUP_QUERY__" (cost=0.00..0.00 rows=1000 width=0)
Node/s: node_pgs01_1, node_pgs02_1, node_pgs03_1
(3 rows)
explain select count(*) from tableB;
Aggregate (cost=2.50..2.51 rows=1 width=0)
-> Data Node Scan on "__REMOTE_GROUP_QUERY__" (cost=0.00..0.00 rows=1000 width=0)
Node/s: node_pgs01_1, node_pgs01_1, node_pgs02_1, node_pgs01_1, node_pgs03_1, node_pgs01_1
(3 rows)
I've seen this twice now, so I figured that maybe the pool needed to be reloaded... so I issued pgxc_pool_reload() but that did not help. Restarting the coordinator did not change anything, so it appears to be that the metadata for table B is bad? No nodes have been added or removed since this table was created.
Any thoughts?
Aaron
|