Thread: Shutdown hook imp

Shutdown hook imp

From
Joseph Shraibman
Date:
I've attached a zip of diffs for the jdbc drivers to implement the
shutdown hook.  Someone who knows ant has to modify what I did so it
only builds in jdk 1.3+

I wasn't able to build this and check if it works (something about the
way things are in the cvs tree snapshot I was working out of) but the
java files are free of syntax errors.

--
Joseph Shraibman
jks@selectacast.net
Increase signal to noise ratio.  http://www.targabot.com

Attachment

Re: Shutdown hook imp

From
Barry Lind
Date:
I don't think this patch is a good idea because:

a) its only purpose is to supress warning messages in the server log
when the client isn't coded properly (i.e. the client application should
be closing connections gracefully/explicitly before calling exit()).

b) The costs of this patch are great IMHO:
   1) increased complexity by having a JDK1.3 specific build
   2) increased support costs (why I am getting error XXX when I run
under JRUN?) (I have already seen more emails to the list about having
problems with this feature than I have ever saw about the warning
messages it supresses).
   3) Increased complexity for users needing to run under JRUN (and
possibly other JSEE servers) because it requires editing the security
manager settings to allow the JDBC driver to do this privileged operation.
   4) Possibly incourages a security hole if the user does 3 above
incorrectly and simply disables the security check, instead of
selectively disabling it for just the JDBC driver.

I see the costs far outweighing the benefits in this case.

thanks,
--Barry

Joseph Shraibman wrote:

> I've attached a zip of diffs for the jdbc drivers to implement the
> shutdown hook.  Someone who knows ant has to modify what I did so it
> only builds in jdk 1.3+
>
> I wasn't able to build this and check if it works (something about the
> way things are in the cvs tree snapshot I was working out of) but the
> java files are free of syntax errors.
>
>
>
> ------------------------------------------------------------------------
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 3: if posting/reading through Usenet, please send an appropriate
> subscribe-nomail command to majordomo@postgresql.org so that your
> message can get through to the mailing list cleanly
>
> jdbc_shutdown_hook_diffs.zip
>
> Content-Type:
>
> application/x-zip-compressed
> Content-Encoding:
>
> base64
>
>
> ------------------------------------------------------------------------
> Part 1.3
>
> Content-Type:
>
> text/plain
> Content-Encoding:
>
> binary
>
>



Re: Shutdown hook imp

From
Joseph Shraibman
Date:
Barry Lind wrote:
>
> I don't think this patch is a good idea because:
>
> a) its only purpose is to supress warning messages in the server log
> when the client isn't coded properly (i.e. the client application should
> be closing connections gracefully/explicitly before calling exit()).

For some people (like me) it isn't that simple to close the connection
objects because of the asyncronous nature of their applications.
>
> b) The costs of this patch are great IMHO:
>    1) increased complexity by having a JDK1.3 specific build

We could just catch the NoSuchMethodError so when it is run on a jdk <
1.3 there will be no problem.

>    2) increased support costs (why I am getting error XXX when I run
> under JRUN?) (I have already seen more emails to the list about having
> problems with this feature than I have ever saw about the warning
> messages it supresses).

Could be solved by documentation.

>    3) Increased complexity for users needing to run under JRUN (and
> possibly other JSEE servers) because it requires editing the security
> manager settings to allow the JDBC driver to do this privileged operation.

I posted the code for the policy file before.  If people use that there
won't be any problems.
Even better if the distributed jar files were signed we could have
policy file entries that would just grant the permission for code that
was signed by postgres.


--
Joseph Shraibman
jks@selectacast.net
Increase signal to noise ratio.  http://www.targabot.com