> The logger was one of my primary suspects, along with the connector (of
> course). I noticed it was logging the host names in the log.
> Should we try to log only the IP address instead of trying to get the fully
> qualified name of the host (which is quite convinient, since it makes the
> log easier to read). Or maybe we could add a a parameter to configure the
> logger to enable / disable host resolution.
It really should be an option. For speed reasons, you don't usually want
to do hostname lookups on a major production server, but it's useful on
smaller and/or test servers.
The problem here, really, is that the hostname lookup is (presumably)
blocking the thread handling that request. Not really very nice. In the
meantime, I can easily enough turn off that log.
Thanks for looking into this.
Michael