Re: autovauum integration patch: Attempt #4 - Mailing list pgsql-patches

From Tom Lane
Subject Re: autovauum integration patch: Attempt #4
Date
Msg-id 22965.1091544633@sss.pgh.pa.us
Whole thread Raw
In response to Re: autovauum integration patch: Attempt #4  ("Matthew T. O'Connor" <matthew@zeut.net>)
Responses Re: autovauum integration patch: Attempt #4
List pgsql-patches
"Matthew T. O'Connor" <matthew@zeut.net> writes:
> I agree.  The thought had crossed my mind that autovac should shut down
> first, but I'm really not sure how to make that happen.

You have to issue the kill() when the postmaster first receives the
shutdown signal, rather than waiting till after all backends exit.
Also, there needs to be some provision for sending a SIGINT to whichever
backend is actually running an autovac-commanded vacuum.  One way to do
this is for autovac, when it gets the SIGUSR2, to turn around and do
PQqueryCancel (sp?) against the active connection.  I'm not sure offhand
how to shoehorn that into your code.

> Right, I didn't want to use GUC vars for this.  As I said in the other
> email, I will take a whack at using a new special .autovacpasswd file in
> the $PGDATA dir.

I'd go with autovac.parms or some such.  $PGDATA isn't anyone's home dir
(normally) and there's no need to tuck config files out of sight.

> BTW, is this really something that needs to get solved?  It could just
> be considered a limitation of the 7.5 implementation that it requires
> local trust or ident authentication.

On platforms with no local ident support, that would equate to making
autovac unusable.  I think it's a must-fix.

> I looked into changing my elog calls to ereport, but I thought it wasn't
> necessary since ordinary users won't see these messages, they will only
> be in the postmaster log file.

DBAs are ordinary users in this context.  I think elog is okay for stuff
that only a developer would ever see, but DBAs want translated messages.

> Ok, some of this cruft is related to its roots as a stand-alone app.  I
> will fix this too.  So the correct answer here is to skip the
> elog/ereport and call proc_exit(), or should I just downgrade the elog
> to NOTICE and then call proc_exit()?  Lemme know and I'll fix.

Actually what I was thinking of was removing the sigsetjmp block (which
would need updated anyway if you keep it).  That would cause elog(ERROR)
to go to proc_exit itself.  You cannot avoid the issue by not using
elog(ERROR), because you are (or will be) calling subroutines that might
use it.

            regards, tom lane

pgsql-patches by date:

Previous
From: Tom Lane
Date:
Subject: Re: psql latex bugfixes
Next
From: "Matthew T. O'Connor"
Date:
Subject: Re: autovauum integration patch: Attempt #4