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
(2) |
14
(3) |
15
|
16
|
17
|
18
(2) |
19
(1) |
20
(3) |
21
|
22
(5) |
23
|
24
|
25
(1) |
26
|
27
|
28
|
29
(1) |
30
|
31
|
|
|
|
|
|
|
From: mei le <lem...@ya...> - 2010-10-19 06:39:09
|
Dears, Maybe a bug. My test environment:two coordinators, two datanodes.The steps are described as follows: 1. create table tt(a int); 2. alter table tt add constraint pk primary key(a); 3. insert into tt values(8); 4. insert into tt values(8); when execute step 4, something happened. coordinator log: template1=# insert into tt values(8); INSERT 0 1 template1=# insert into tt values(8); WARNING: unexpected EOF on datanode connection ERROR: Failed to read response from data nodes STATEMENT: insert into tt values(8); WARNING: unexpected EOF on datanode connection WARNING: unexpected EOF on datanode connection WARNING: unexpected EOF on datanode connection ERROR: Failed to read response from data nodes template1=# LOG: failed to connect to data node LOG: failed to connect to data node Two datanodes' logs are described respectively. local one: LOG: statement: BEGIN LOG: statement: insert into tt values(8); LOG: statement: PREPARE TRANSACTION 'T116' LOG: statement: COMMIT PREPARED 'T116' LOG: statement: BEGIN LOG: statement: insert into tt values(8); ERROR: duplicate key value violates unique constraint "pk" STATEMENT: insert into tt values(8); PANIC: cannot abort transaction 118, it was already committed LOG: server process (PID 1374) was terminated by signal 6: Aborted LOG: terminating any other active server processes LOG: all server processes terminated; reinitializing LOG: database system was interrupted; last known up at 2010-10-19 14:30:31 CST LOG: database system was not properly shut down; automatic recovery in progress The session started: 1376 FATAL: the database system is in recovery mode LOG: redo starts at 0/4BC07C LOG: record with zero length at 0/4BC408 LOG: redo done at 0/4BC3DC LOG: last completed transaction was at log time 2021-08-06 21:02:14.101545+08 LOG: autovacuum launcher started LOG: database system is ready to accept connections The remote datanode log: LOG: statement: BEGIN LOG: statement: insert into tt values(8); LOG: statement: PREPARE TRANSACTION 'T116' LOG: statement: COMMIT PREPARED 'T116' LOG: statement: BEGIN LOG: statement: insert into tt values(8); LOG: statement: ROLLBACK PANIC: cannot abort transaction 118, it was already committed STATEMENT: ROLLBACK LOG: server process (PID 28899) was terminated by signal 6: Aborted LOG: terminating any other active server processes LOG: all server processes terminated; reinitializing LOG: database system was interrupted; last known up at 2010-10-19 14:29:49 CST LOG: database system was not properly shut down; automatic recovery in progress The session started: 28901 FATAL: the database system is in recovery mode LOG: redo starts at 0/712738 LOG: record with zero length at 0/712A44 LOG: redo done at 0/712A18 LOG: last completed transaction was at log time 2021-08-06 21:01:31.960109+08 LOG: autovacuum launcher started LOG: database system is ready to accept connections Truely, Benny |