You can subscribe to this list here.
2010 |
Jan
|
Feb
|
Mar
|
Apr
(10) |
May
(17) |
Jun
(3) |
Jul
|
Aug
|
Sep
(8) |
Oct
(18) |
Nov
(51) |
Dec
(74) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2011 |
Jan
(47) |
Feb
(44) |
Mar
(44) |
Apr
(102) |
May
(35) |
Jun
(25) |
Jul
(56) |
Aug
(69) |
Sep
(32) |
Oct
(37) |
Nov
(31) |
Dec
(16) |
2012 |
Jan
(34) |
Feb
(127) |
Mar
(218) |
Apr
(252) |
May
(80) |
Jun
(137) |
Jul
(205) |
Aug
(159) |
Sep
(35) |
Oct
(50) |
Nov
(82) |
Dec
(52) |
2013 |
Jan
(107) |
Feb
(159) |
Mar
(118) |
Apr
(163) |
May
(151) |
Jun
(89) |
Jul
(106) |
Aug
(177) |
Sep
(49) |
Oct
(63) |
Nov
(46) |
Dec
(7) |
2014 |
Jan
(65) |
Feb
(128) |
Mar
(40) |
Apr
(11) |
May
(4) |
Jun
(8) |
Jul
(16) |
Aug
(11) |
Sep
(4) |
Oct
(1) |
Nov
(5) |
Dec
(16) |
2015 |
Jan
(5) |
Feb
|
Mar
(2) |
Apr
(5) |
May
(4) |
Jun
(12) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(4) |
2019 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
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
(1) |
14
|
15
|
16
|
17
|
18
|
19
|
20
(1) |
21
|
22
|
23
|
24
(1) |
25
|
26
|
27
(1) |
28
(1) |
29
|
30
|
31
|
From: Jaimin P. <jai...@gm...> - 2015-01-28 11:22:39
|
Hi All, It'a a patch for fixing bug in gtm_serialize.c |
From: <xu...@cm...> - 2015-01-27 11:34:03
|
hi When I use pgxc_ctl tool to monitor datanode. I found that pgxc_ctl monitor function have some problems as follow: 1.If datanode is recovering, then pgxc_ctl monitor issue wrong state information that datanode is not runing. Obviously, It is wrong. I hope pgxc_ctl tool tell me that datanode is recovering. 2.If datanode is shutting down. pgxc_ctl mointor function has the same problem as above. Now I have a design that it can provide detailed and precise information on the status of the database. In datanode, there is a file in data folder. Name is pg_control, Path is data/global. This file records the current state information about the datanode as follow: Database cluster state: in production Database cluster state: starting up Database cluster state: shut down Database cluster state: shut down in recovery Database cluster state: shutting down Database cluster state: in crash recovery Database cluster state: in archive recovery Now if I know datanode master process is active. Then I can make sure that the stats information in pg_control is right. Pseudocode as follows: 1.See whether datanode master process is active with ssh command(ssh pgxc@192.168.198.101 ps -ef | grep /home/pgxc/data/datanode) 2.If master process is active, then we can get current state information with ssh command(ssh pgxc@192.168.198.101 /home/pgxc/postgres_xc/bin/pg_controldata /home/pgxc/data/dn_master/ | grep "Database cluster state") 3.If master process is not active. then tell user that datanode service is shut down. Please help to review this design, If any problem, please let me know. Thank your for help xu...@cm... |
From: Jaimin P. <jai...@gm...> - 2015-01-24 05:45:20
|
Hi All, The gtm.patch1 is for TXN_START_PREPARED backup process. The gtm.patch2 does some code refactory after apply gtm.patch1. |
From: Jaimin P. <jai...@gm...> - 2015-01-20 07:25:19
|
Hi All, The patch is for Begin Transaction. It uses uninitialize timestamp for backup. |
From: Wang D. <dia...@qq...> - 2015-01-13 04:12:50
|
Hi, this patch reduce error level to LOG in ServerLoop() for GTM and GTM proxy. Because PG_exception_stack not set in main thread, elog with ERROR(eg. thread create failed) can cause whole program exit, see pg_re_throw(). This patch refers to error process of postmaster, which just log error. Note, palloc still used in ServerLoop(), which will raise a ERROR message if out of memory, fix it need another patch. -- Best Regards, Wang Diancheng |