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
(1) |
2
(2) |
3
|
4
|
5
|
6
(1) |
7
(1) |
8
(3) |
9
|
10
|
11
|
12
(2) |
13
(3) |
14
(2) |
15
(7) |
16
(4) |
17
|
18
|
19
(1) |
20
(7) |
21
|
22
(2) |
23
(1) |
24
|
25
|
26
(1) |
27
|
28
(1) |
29
|
30
|
31
|
From: Koichi S. <koi...@us...> - 2011-12-26 12:41:34
|
Project "Postgres-XC". The branch, master has been updated via c06dfe06aa8d8d0ac1b6d2a445f0ae93cee9bac3 (commit) from 1b244c116e9cb93253c37236cf722072a719b0e4 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=c06dfe06aa8d8d0ac1b6d2a445f0ae93cee9bac3 commit c06dfe06aa8d8d0ac1b6d2a445f0ae93cee9bac3 Author: Koichi Suzuki <koi...@gm...> Date: Mon Dec 26 21:41:30 2011 +0900 This commit adds error handling in gtm_proxy so that it now check GTM communication error and handle the error so that: If GTM connectin retry is specified by configuration parameters gtm_connect_retry_idle, gtm_connect_retry_count and gtm_connect_retry_interval, gtm_proxy will retry to establish connection to GTM, while waiting for reconnect request from gtm_ctl. If retry failed, then it will wait for reconnect request from gtm_ctl as specified by err_wait_idle, err_wait_cound and err_wait_interval. GTM error should be detected, gtm-standby should be promoted to ACT and gtm_proxy should should be reconnected to the promoted gtm within these timers. M doc-xc/src/sgml/ref/gtm_proxy.sgmlin M src/gtm/client/fe-misc.c M src/gtm/libpq/pqcomm.c M src/gtm/main/gtm.conf.sample M src/gtm/proxy/gtm_proxy.conf.sample M src/gtm/proxy/gtm_proxy_opt.c M src/gtm/proxy/proxy_main.c M src/include/gtm/gtm_c.h M src/include/gtm/gtm_client.h M src/include/gtm/gtm_opt.h M src/include/gtm/gtm_proxy.h M src/include/gtm/libpq-be.h M src/include/gtm/libpq-fe.h M src/include/gtm/libpq-int.h ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/ref/gtm_proxy.sgmlin | 96 +++++++++++++- src/gtm/client/fe-misc.c | 13 ++ src/gtm/libpq/pqcomm.c | 8 + src/gtm/main/gtm.conf.sample | 2 +- src/gtm/proxy/gtm_proxy.conf.sample | 48 +++++-- src/gtm/proxy/gtm_proxy_opt.c | 135 ++++++++++++++----- src/gtm/proxy/proxy_main.c | 244 ++++++++++++++++++++++++++++------ src/include/gtm/gtm_c.h | 9 ++ src/include/gtm/gtm_client.h | 50 ++++---- src/include/gtm/gtm_opt.h | 5 +- src/include/gtm/gtm_proxy.h | 9 +- src/include/gtm/libpq-be.h | 26 ++-- src/include/gtm/libpq-fe.h | 18 ++-- src/include/gtm/libpq-int.h | 38 +++--- 14 files changed, 535 insertions(+), 166 deletions(-) hooks/post-receive -- Postgres-XC |