-
1. Re: JBAS-2448 - Pooled Invoker Patch
adrian.brock Nov 16, 2005 4:54 PM (in response to adrian.brock)"For example, it relies on the fact, that Thread.interrupt() interrupts IO Operations such as read on network sockets. "
This is wrong for a start. JDK1.4 was fixed/changed such that interrupt works on I/O.
One some OSes/JVMs it worked in JDK1.3 as well.
It doesn't help if the thread is spinning without hitting I/O or a wait() block, but then
nothing helps there.
Setting the read timeout to zero is a stupid configuration.
The other issues, I leave for somebody more familiar with the code.
The user provides changed source code rather than a diff, so the barrier to entry
too great to understand what is changed. -
2. Re: JBAS-2448 - Pooled Invoker Patch
tr0000 Nov 16, 2005 5:45 PM (in response to adrian.brock)> This is wrong for a start. JDK1.4 was fixed/changed such that >interrupt works on I/O. One some OSes/JVMs it worked in JDK1.3 as well.
If you set a socket timeout, the read will terminate after
the timeout. But this is completely unrelated to the interrupt.
(Tested even with Java 1.5)
The interrupt won't make it terminate faster.
So if you set a timeout of say 120 seconds, an unused connection
won't be reused immediately. On the other hand, if there
are pooled connections, they will be terminated if they are
unused for the time, even if they are not needed and could
stay pooled. -
3. Re: JBAS-2448 - Pooled Invoker Patch
adrian.brock Nov 16, 2005 5:48 PM (in response to adrian.brock)"If you set a socket timeout, the read will terminate after
the timeout. But this is completely unrelated to the interrupt. "
Correct. That is why I put it in a different paragraph.
Having a read timeout of zero means you are open to hanging sockets
due to network splits, TCP/IP RST packets getting lost, etc. -
4. Re: JBAS-2448 - Pooled Invoker Patch
adrian.brock Nov 16, 2005 6:01 PM (in response to adrian.brock)What I want to see is some proof that the problem is really that I/O is not interrupted
rather than some other issue, including the usual suspects
* broken/misconfigured tcp/ip stack
* broken network card or firewall problem
* broken or mismatching JVM/c library
* etc.
I don't see any evidence of getting to the cause in your "bug" report.
Just assertion that this is the cause. Which is why I changed it to a patch.
It obviously fixes whatever it is you are seeing.
Interrupting the wrong thread sounds more like the cause to me? -
5. Re: JBAS-2448 - Pooled Invoker Patch
tr0000 Nov 16, 2005 8:27 PM (in response to adrian.brock)The only behaviour I could reliably reproduce so far depends on socket timeout 0. The rest of the analysis at this point comes from looking at the code. So changing the status from bug to patch is fine with me.
> Interrupting the wrong thread sounds more like the cause to me?
I don't unterstand the reason behind using interrupt in the
original code. The only place I see where interrupt could possibly affect the ServerThread is the this.wait() call.
The comments in the code suggest otherwise. -
6. Re: JBAS-2448 - Pooled Invoker Patch
starksm64 Feb 4, 2006 3:00 PM (in response to adrian.brock)The patch is really a significant rewrite that needs to be reviewed for the underlying issue. Since I have updated the pooled invoker to support propagation of the ssl session id, the current patch is out of date.