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) |
2
|
3
|
4
|
5
(1) |
6
|
7
|
8
|
9
|
10
|
11
(3) |
12
|
13
(8) |
14
(2) |
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
|
From: <ap...@us...> - 2014-02-14 02:17:13
|
Project "Postgres-XC". The branch, REL1_2_STABLE has been updated via b19e1a025ccda61790cbdaf96e5241b719c89d23 (commit) from e36b20469229b799f0a7b3baec7a3211f25f1e4a (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=b19e1a025ccda61790cbdaf96e5241b719c89d23 commit 7e6d5af89f1d6c3f08bee67826f6789b672326f5 Author: koichi <ko...@bu...> Date: Wed Dec 25 13:09:34 2013 +0900 This fixes a portion of the bug #442, coordinator crash on COPY TO. Current code did not do any flow control so the coordinator continues to send row data to the datanode even though datanode is very busy and cannot receive the data, thus exceeding the buffer size limit (1GByte). This patch monitors how much data are sent by examining send() return value. If outstanding data exceeds a limit, it retries to send until the size of outstanding data becomes small enough. This fix deals with COPY TO. Fix to COPY FROM will be done as a separate commit. COPY TO crash report was made by Mason Sharp. M src/backend/pgxc/pool/execRemote.c M src/backend/pgxc/pool/pgxcnode.c ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/pool/execRemote.c | 63 ++++++++++++++++++++++++++++++++++++ src/backend/pgxc/pool/pgxcnode.c | 2 +- 2 files changed, 64 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |
From: <ap...@us...> - 2014-02-14 02:09:06
|
Project "Postgres-XC". The branch, master has been updated via 7e6d5af89f1d6c3f08bee67826f6789b672326f5 (commit) from 9049279165848cdd5587f83aa6255d88eb9bafda (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=7e6d5af89f1d6c3f08bee67826f6789b672326f5 commit 7e6d5af89f1d6c3f08bee67826f6789b672326f5 Author: koichi <ko...@bu...> Date: Wed Dec 25 13:09:34 2013 +0900 This fixes a portion of the bug #442, coordinator crash on COPY TO. Current code did not do any flow control so the coordinator continues to send row data to the datanode even though datanode is very busy and cannot receive the data, thus exceeding the buffer size limit (1GByte). This patch monitors how much data are sent by examining send() return value. If outstanding data exceeds a limit, it retries to send until the size of outstanding data becomes small enough. This fix deals with COPY TO. Fix to COPY FROM will be done as a separate commit. COPY TO crash report was made by Mason Sharp. M src/backend/pgxc/pool/execRemote.c M src/backend/pgxc/pool/pgxcnode.c ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/pool/execRemote.c | 63 ++++++++++++++++++++++++++++++++++++ src/backend/pgxc/pool/pgxcnode.c | 2 +- 2 files changed, 64 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |