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
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
19
(10) |
20
|
21
|
22
|
23
|
24
(1) |
25
(2) |
26
(3) |
27
(7) |
28
|
29
|
30
(8) |
31
(1) |
|
|
|
|
From: Lionel F. <lio...@gm...> - 2011-05-31 07:26:11
|
Hi, yes, persistent_datanode_connections is now set to off - it may not be related to the issues I have. What amount of memory do you have on your datanodes & coordinator ? Here are my settings : datanode : shared_buffers = 512MB coordinator=256MB (now, was 96MB) I still get for some distributed tables (by hash) "ERROR: Could not commit prepared transaction implicitely" For distribution syntax, yes, I found your webpage talking about regression tests > You also have to know that it is important to set a limit of connections on > datanodes equal to the sum of max connections on all coordinators. > For example, if your cluster is using 2 coordinator with 20 max connections > each, you may have a maximum of 40 connections to datanodes. Ok, tweaking this today and launching the tests again... Lionel F. 2011/5/31 Michael Paquier <mic...@gm...>: > > > On Mon, May 30, 2011 at 7:34 PM, Lionel Frachon <lio...@gm...> > wrote: >> >> Hi again, >> >> I turned off connection pooling on coordinator (dunno why it sayed >> on), raised the shared_buffers of coordinator, allowed 1000 >> connections and the error disappeared. > > I am not really sure I get the meaning of this, but how did you turn off > pooler on coordinator. > Did you use the parameter persistent_connections? > Connection pooling from coordinator is an automatic feature and you have to > use it if you want to connect from a remote coordinator to backend XC nodes. > > You also have to know that it is important to set a limit of connections on > datanodes equal to the sum of max connections on all coordinators. > For example, if your cluster is using 2 coordinator with 20 max connections > each, you may have a maximum of 40 connections to datanodes. > This uses a lot of shared buffer on a node, but typically this maximum > number of connections is never reached thanks to the connection pooling. > > Please node also that number of Coordinator <-> Coordinator connections may > also increase if DDL are used from several coordinators. > >> However, all data is still going on one node (and whatever I could >> choose as primary datanode), with 40 warehouses... any specific syntax >> to load balance warehouses over nodes ? > > CREATE TABLE foo (column_key type, other_column int) DISTRIBUTE BY > HASH(column_key); > -- > Michael Paquier > http://michael.otacoo.com > |