Re: can't get connection during pg_dump

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Steve Linabery <slinabery(at)worldcycling(dot)com>
Cc: pgsql-admin(at)postgresql(dot)org, pgsql-hackers(at)postgresql(dot)org
Subject: Re: can't get connection during pg_dump
Date: 2006-03-30 17:17:11
Message-ID: 15977.1143739031@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin pgsql-hackers

Steve Linabery <slinabery(at)worldcycling(dot)com> writes:
> I just replicated the problem, see below for explanation, but here is ps output:

> postgres 25817 3201 55 10:20 ? 00:02:54 postgres: postgres db_being_dumped [local] COPY
> postgres 27956 3201 46 10:24 ? 00:00:36 postgres: postgres db_being_dumped [local] COPY
> postgres 28124 3201 0 10:25 ? 00:00:00 postgres: dbusername template1 obfus.ip.address.36(49528) DROP DATABASE waiting
> postgres 28180 3201 0 10:25 ? 00:00:00 postgres: dbusername db_being_dumped obfus.ip.address.37(48997) startup waiting
> postgres 28183 3201 0 10:25 ? 00:00:00 postgres: dbusername db_being_dumped obfus.ip.address.36(49532) startup waiting

Hm. DROP DATABASE takes ExclusiveLock on pg_database, which blocks new
incoming connections, and both of those things are intentional (part of
the point of the lock is to block new connections to the victim
database, so it's hard to see how we could avoid this).

What doesn't seem so essential though is for pg_dump to be holding a
conflicting lock on pg_database. In fact, a plain AccessShareLock
wouldn't block DROP DATABASE, so I'm not entirely sure that pg_dump
is at fault. Could we see the contents of pg_locks for this situation?

regards, tom lane

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message lmyho 2006-03-30 17:27:50 Re: Postgresql server does not start!:( -Re: PostgreSQl newbie!
Previous Message Scott Marlowe 2006-03-30 17:12:59 Re: Postgresql server does not start!:( -Re: PostgreSQl

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2006-03-30 17:25:32 Re: pg_class catalog question...
Previous Message Heikki Linnakangas 2006-03-30 16:51:03 Re: Index vacuum improvements