You can subscribe to this list here.
2010 |
Jan
|
Feb
|
Mar
|
Apr
(4) |
May
(28) |
Jun
(12) |
Jul
(11) |
Aug
(12) |
Sep
(5) |
Oct
(19) |
Nov
(14) |
Dec
(12) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2011 |
Jan
(18) |
Feb
(30) |
Mar
(115) |
Apr
(89) |
May
(50) |
Jun
(44) |
Jul
(22) |
Aug
(13) |
Sep
(11) |
Oct
(30) |
Nov
(28) |
Dec
(39) |
2012 |
Jan
(38) |
Feb
(18) |
Mar
(43) |
Apr
(91) |
May
(108) |
Jun
(46) |
Jul
(37) |
Aug
(44) |
Sep
(33) |
Oct
(29) |
Nov
(36) |
Dec
(15) |
2013 |
Jan
(35) |
Feb
(611) |
Mar
(5) |
Apr
(55) |
May
(30) |
Jun
(28) |
Jul
(458) |
Aug
(34) |
Sep
(9) |
Oct
(39) |
Nov
(22) |
Dec
(32) |
2014 |
Jan
(16) |
Feb
(16) |
Mar
(42) |
Apr
(179) |
May
(7) |
Jun
(6) |
Jul
(9) |
Aug
|
Sep
(4) |
Oct
|
Nov
(3) |
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
1
|
2
|
3
|
4
|
5
(2) |
6
(2) |
7
|
8
(2) |
9
|
10
|
11
(1) |
12
(1) |
13
|
14
(2) |
15
(2) |
16
|
17
|
18
(1) |
19
|
20
|
21
(2) |
22
|
23
|
24
|
25
(1) |
26
|
27
(2) |
28
(2) |
29
(2) |
30
|
31
|
|
|
|
|
|
|
From: Michael P. <mic...@us...> - 2011-07-15 07:12:33
|
Project "Postgres-XC". The branch, REL0_9_5_STABLE has been updated via 9c9346e33d899a9aaebaa1e1a6d5f79bb1d8d49d (commit) from 694253102c045e2fc3d145d6718b81b5977004b3 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commit;h=9c9346e33d899a9aaebaa1e1a6d5f79bb1d8d49d commit 5e13a79645239f25615dfc9ee1d177f44e0bbc09 Author: Michael P <mic...@us...> Date: Fri Jul 15 15:30:12 2011 +0900 Fix for bug 3366724: Autovacuum warning on datanode This was caused by autovacuum launcher on Datanode. As autovacuum is not authorized to get GXID and snapshot from GTM, bypass this warning. Global snapshot is not necessary for launcher as autovacuum analyze and worker are in charge of table cleanup. M src/backend/storage/ipc/procarray.c ----------------------------------------------------------------------- Summary of changes: src/backend/storage/ipc/procarray.c | 19 +++++++++++++------ 1 files changed, 13 insertions(+), 6 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-07-15 06:43:55
|
Project "Postgres-XC". The branch, master has been updated via 5e13a79645239f25615dfc9ee1d177f44e0bbc09 (commit) from fb2a3a864dee367f2cfe76a3a4fff5e02cb94fc1 (commit) - Log ----------------------------------------------------------------- commit 5e13a79645239f25615dfc9ee1d177f44e0bbc09 Author: Michael P <mic...@us...> Date: Fri Jul 15 15:30:12 2011 +0900 Fix for bug 3366724: Autovacuum warning on datanode This was caused by autovacuum launcher on Datanode. As autovacuum is not authorized to get GXID and snapshot from GTM, bypass this warning. Global snapshot is not necessary for launcher as autovacuum analyze and worker are in charge of table cleanup. diff --git a/src/backend/storage/ipc/procarray.c b/src/backend/storage/ipc/procarray.c index 5477df6..783b352 100644 --- a/src/backend/storage/ipc/procarray.c +++ b/src/backend/storage/ipc/procarray.c @@ -1243,18 +1243,25 @@ GetSnapshotData(Snapshot snapshot) /* else fallthrough */ } - /* If we have no snapshot, we will use a local one. + /* + * If we have no snapshot, we will use a local one. * If we are in normal mode, we output a warning though. * We currently fallback and use a local one at initdb time, * as well as when a new connection occurs. + * This is also the case for autovacuum launcher. + * * IsPostmasterEnvironment - checks for initdb * IsNormalProcessingMode() - checks for new connections + * IsAutoVacuumLauncherProcess - checks for autovacuum launcher process */ - if (IS_PGXC_DATANODE && snapshot_source == SNAPSHOT_UNDEFINED - && IsPostmasterEnvironment && IsNormalProcessingMode()) - { - elog(WARNING, "Do not have a GTM snapshot available"); - } + if (IS_PGXC_DATANODE && + snapshot_source == SNAPSHOT_UNDEFINED && + IsPostmasterEnvironment && + IsNormalProcessingMode() && + !IsAutoVacuumLauncherProcess()) + { + elog(WARNING, "Do not have a GTM snapshot available"); + } #endif /* ----------------------------------------------------------------------- Summary of changes: src/backend/storage/ipc/procarray.c | 19 +++++++++++++------ 1 files changed, 13 insertions(+), 6 deletions(-) hooks/post-receive -- Postgres-XC |