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: Dorian H. <dor...@gm...> - 2014-05-03 15:59:49
|
> > You just need commodity INTEL server runnign Linux. Are INTEL cpu required ? If not INTEL can be removed ? (also running typo) For datawarehouse applications, you may need separate patch which devides complexed query > into smaller chunks which run in datanodes in parallel. StormDB will provide such > patche. Wasn't stormdb bought by another company ? Is there an opensource alternative ? Fix the "patche" typo ? A way to make it simpler is by merging coordinator and datanode into 1 and making it possible for a 'node' to not hold data (be a coordinator only), like in elastic-search, but you probably already know that. What exact things does the gtm-proxy do? For example, a single row insert wouldn't need the gtm (coordinator just inserts it to the right data-node)(asumming no sequences, since for that the gtm is needed)? If multiple tables are sharded on the same key (example: user_id). Will all the rows, from the same user in different tables be in the same data-node ? On Fri, May 2, 2014 at 10:43 AM, Koichi Suzuki <koi...@gm...>wrote: > Hello; > > Because there are many discussions here on Postgres-XC configuration > and operation, I drafted a paper "Pgcx_ctl primer" to provide how to > configure Postgres-XC cluster and how to operate it. > > https://sourceforge.net/projects/postgres-xc/files/Pgxc_ctl_primer/? > contains the document. > > Hope to have feedback on it. > > Regards; > --- > Koichi Suzuki > > > ------------------------------------------------------------------------------ > "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: Juned K. <jkh...@gm...> - 2014-05-03 05:32:06
|
Hi Koichi, I tried to follow the steps removing datanode slave and adding it again but i no success. even earlier only datanode slave was not working but now gtm slave, gtm_pxy2, coord2 and dn_slave is not starting up. I have removed GTM slave and datanode slave here is my current status of pgxc PGXC monitor all Running: gtm master Running: gtm proxy gtm_pxy1 Not running: gtm proxy gtm_pxy2 Running: coordinator master coord1 Not running: coordinator master coord2 Running: datanode master datanode1 Now each time i have to connect on db02 only( i.e PGXC Psql -h db02 -d mydatabase) but its not allowing me to modify table structure. and giving me below error. mydatabase=# alter table invoice_summary_data add countrycode text not null default ''::character(1); ERROR: Failed to get pooled connections CONTEXT: SQL statement "EXECUTE DIRECT ON (coord2) 'SELECT pg_catalog.pg_try_advisory_xact_lock_shared(65535, 0)'" So as of now i am planning to remove those components which are not working (gtm_pxy2,coord2 ). so it will not go to connect cood2 which is down. what will be the impact of this, i don't want to loost database access completely. Please suggest. Regards Juned Khan |