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
(1) |
5
(1) |
6
|
7
|
8
(2) |
9
(2) |
10
|
11
|
12
(4) |
13
(1) |
14
|
15
(3) |
16
(5) |
17
(2) |
18
(2) |
19
|
20
|
21
|
22
(1) |
23
(5) |
24
(2) |
25
(6) |
26
(3) |
27
|
28
(1) |
29
(3) |
30
(7) |
|
|
|
|
From: Michael P. <mic...@gm...> - 2010-11-22 02:13:33
|
Hi, I made the same test as you and didn't notice any errors when dropping the second database. By Having a look at the logs of your nodes when you stopped them, it looks that it entered in recovery mode. So I assume you stopped it in "fast" mode with pg_ctl or with SIGQUIT. In this case database shuts down without waiting for the client to disconnect. My cluster structure is 2 Coordinators and 2 datanodes, with 2 proxies. After doing the same SQL, I stopped my nodes in the most violent way. GTM and proxies were not shut down. pgsql]$ ./bin/pg_ctl stop -m fast -D ~/pgsql/coord1/ waiting for server to shut down.... done server stopped pgsql]$ ./bin/pg_ctl stop -m fast -D ~/pgsql/coord2/ waiting for server to shut down.... done server stopped pgsql]$ ./bin/pg_ctl stop -m fast -D ~/pgsql/datanode2/ waiting for server to shut down.... done server stopped pgsql]$ ./bin/pg_ctl stop -m fast -D ~/pgsql/datanode1/ waiting for server to shut down.... done server stopped Then I restarted the nodes, and dropped a database. It worked. I did also a second test. I stopped my nodes, then the proxies (GTM not touched): pgsql]$ ./bin/gtm_ctl stop -m fast -S gtm_proxy -D /home/michael/pgsql/proxy2 waiting for server to shut down.... done server stopped pgsql]$ ./bin/gtm_ctl stop -m fast -S gtm_proxy -D /home/michael/pgsql/proxy1 waiting for server to shut down... done server stopped I restart the whole cluster, then drop again a dabatase. It worked once again. I made a couple of times the same tests and it looked to work all the time. The logs on each node also looked correct. Regards, -- Michael Paquier http://michaelpq.users.sourceforge.net |