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
(1) |
5
(5) |
6
(1) |
7
(3) |
8
(2) |
9
(4) |
10
(6) |
11
(2) |
12
|
13
|
14
(1) |
15
(2) |
16
(2) |
17
(6) |
18
|
19
(1) |
20
|
21
(4) |
22
(4) |
23
(5) |
24
(4) |
25
(1) |
26
(2) |
27
(2) |
28
(2) |
29
(6) |
30
(11) |
31
(14) |
|
|
From: Michael P. <mic...@gm...> - 2013-01-22 23:14:51
|
On Wed, Jan 23, 2013 at 7:03 AM, Steven Vaughan < ste...@da...> wrote: > > Howdy all, I was wondering if all node entries (manually managed by > CREATE NODE... ) were manually created or if there was some automation in > the background that kept the pgxc metadata table up to date? (For > instance, when a datanode connected to the gtm?) > You need to do that manually or with an external manager tool. -- Michael Paquier http://michael.otacoo.com |
From: Steven V. <ste...@da...> - 2013-01-22 23:01:00
|
Howdy all, I was wondering if all node entries (manually managed by CREATE NODE... ) were manually created or if there was some automation in the background that kept the pgxc metadata table up to date? (For instance, when a datanode connected to the gtm?) Thanks in advance, -steve |
From: Filip R. <fil...@gm...> - 2013-01-22 04:37:25
|
Ashutosh, Michael - thank you both for explanations, I really appreciate it. Very good it is not the same thing as in pgpool :-) regards, Filip On Mon, Jan 21, 2013 at 10:25 PM, Ashutosh Bapat <ash...@en...> wrote: > On Tue, Jan 22, 2013 at 3:41 AM, Filip Rembiałkowski > <fil...@gm...> wrote: >> Hi PG-XC authors. >> >> I am reading the PGCon2012 Tutorial presentation >> [ http://postgresxc.wikia.com/wiki/File:20120515_PGXC_Tutorial_global_1.pdf ] >> >> Thank you for this document - it really covers many things. >> >> On page 44 you write about data distribution, and using distributed >> tables versus replicated tables. >> You use the term "Statement based replication" - and this alerted me instantly. >> > > statement based replication simply means that data is replicated using > SQL statements as opposed to WALs etc. These statements are generated > at the coordinator, while planning the query. Postgres-XC is > intelligent enough to understand which parts of original DML can be > evaluated at the datanodes and which are not and it generates the > statements by feeding values for the parts that need evaluation at > coordinator (like volatile functions). So the problems like pgpool do > not occur in Postgres-XC. > >> What _exactly_ did you mean by this? >> >> As you probably know, pgpool project uses exactly same term, and for >> them it means sending same statement to many parallel nodes. >> This approach is proven to be flawed by design - at least when you use >> any volatile functions when writing, it makes replicas inconsistent. >> >> Thanks, >> Filip >> >> ------------------------------------------------------------------------------ >> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, >> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current >> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft >> MVPs and experts. SALE $99.99 this month only -- learn more at: >> http://p.sf.net/sfu/learnmore_122412 >> _______________________________________________ >> Postgres-xc-general mailing list >> Pos...@li... >> https://lists.sourceforge.net/lists/listinfo/postgres-xc-general > > > > -- > Best Wishes, > Ashutosh Bapat > EntepriseDB Corporation > The Enterprise Postgres Company |
From: Ashutosh B. <ash...@en...> - 2013-01-22 04:25:15
|
On Tue, Jan 22, 2013 at 3:41 AM, Filip Rembiałkowski <fil...@gm...> wrote: > Hi PG-XC authors. > > I am reading the PGCon2012 Tutorial presentation > [ http://postgresxc.wikia.com/wiki/File:20120515_PGXC_Tutorial_global_1.pdf ] > > Thank you for this document - it really covers many things. > > On page 44 you write about data distribution, and using distributed > tables versus replicated tables. > You use the term "Statement based replication" - and this alerted me instantly. > statement based replication simply means that data is replicated using SQL statements as opposed to WALs etc. These statements are generated at the coordinator, while planning the query. Postgres-XC is intelligent enough to understand which parts of original DML can be evaluated at the datanodes and which are not and it generates the statements by feeding values for the parts that need evaluation at coordinator (like volatile functions). So the problems like pgpool do not occur in Postgres-XC. > What _exactly_ did you mean by this? > > As you probably know, pgpool project uses exactly same term, and for > them it means sending same statement to many parallel nodes. > This approach is proven to be flawed by design - at least when you use > any volatile functions when writing, it makes replicas inconsistent. > > Thanks, > Filip > > ------------------------------------------------------------------------------ > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft > MVPs and experts. SALE $99.99 this month only -- learn more at: > http://p.sf.net/sfu/learnmore_122412 > _______________________________________________ > Postgres-xc-general mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-general -- Best Wishes, Ashutosh Bapat EntepriseDB Corporation The Enterprise Postgres Company |