in reply to Re^5: PANIC: underlying join failed threded tcp server
in thread PANIC: underlying join failed threded tcp server
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: PANIC: underlying join failed threded tcp server
by BrowserUk (Patriarch) on Oct 19, 2012 at 03:01 UTC | |
None of that info is particularly helpful to me at least but if you see something I don't, I'm all ears. What I can see from that info is: What that indicates is that either: The next thing I would try is adding a similar trace line at the end of S_ithread_create(), something like:
And also in
The idea is to isolate whether -- when the error occurs -- the invalid handle is to a thread that has already been freed -- in which case the bug is in threads::list() -- or to a thread that has not yet been freed -- in which case it would mean an OS error of some kind; perhaps resource constraint; I breifly looked at trying to run your server here and trying to re-create the failure. Whilst the server runs and accepts connections from a telnet seesion, it won't accept input from it because (my) telnet sends character by character and it is expecting entire commands wrapped in your (incredibly complicated) comms protcol. There is no way I am going to be able to reverse engineer a client that can talk that protocol. With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
| [reply] [d/l] [select] |
by rmahin (Scribe) on Oct 19, 2012 at 21:35 UTC | |
I attached the log of this run below in the files called serverOutput2.txt, it exited with a different error this time, Which again appears to be related to the thread handle. Sorry about the complicated protocol. People I work with did not wish to go through the trouble of having much back and forth communication between the client/server, and rather just send command once, receive response, and still needed a way to transfer a 400MB file. So this is what we (I) came up with (you should have seen the earlier version). I've attached the client (rx.pl) as well as the test script i used to recreate this issue. (i also included the server, rxd.pl, with all other commands besides exec stripped out except for EXEC to shorten the code. And included the exact threads.xs used to compile the threads module) Thanks again for the help. Files: https://dl.dropbox.com/u/19686501/perlmonk.zip | [reply] [d/l] [select] |
by BrowserUk (Patriarch) on Oct 20, 2012 at 05:37 UTC | |
Okay. I think I have a handle on what is happening. The short explanation is that you are simply running the OS out of resources. 2000 concurrent threads, each starting a console session doing a dir -- 100 of which are recursive from root -- consumes prodigious amount of resources. Your use of a VM maybe a contributory factor; I cannot reproduce the error here. My system grinds to a near complete halt for an extended period, but once the 1900 dirs of the current directory finish and 1900 cmd.exe's & 1900 threads & 1900 tcp connections go away, my system returns to a responsive state and it is then just a case of waiting while the 100 dir/s c:\ finish recursing the 212,000 directories and 1.5 million files on my hard drive, and then for all that data to get wrapped up in your protocol, shipped back to the receiving processes, unwrapped and output to the terminal. But it works. It eventually completes okay; which I find quite remarkable and makes me think Ithreads -- on windows at least -- is in remarkably good fettle. I do not believe that the problem you are seeing is a Perl issue; but rather an OS issue where -- under extreme resource depletion -- it is dropping/forgetting kernel thread objects that have completed before perl gets the chance to wait for them. I don't believe that should happen under normal circumstances, but these are not normal. Why "believe" this and "believe" that!There is a possibility that the trace output we produced is lying to me. For simplicity, the trace I had you add to threads.xs is crude -- and flawed. Using printf from multiple threads in C, is subject to the same problems of buffering and overlapping as print/printf are from multiple threads in Perl. It needs to be serialised. It is possible the symptoms I am seeing in the trace output you supplied -- Ie. A thread created that has become a non-thread by the time Perl tries to join it:
Is a symptom of overwritten buffered IO, rather than an OS "quirk". To counter that possibility, I've re-written the tracing code and wrapped it in a critsec to (attempt to) preclude that possibility. What that means is I am going to ask you to replace your threads.xs with this version: I was going to post it above, but it is too big; perlmonks won't accept it. You'll need to /msg me an email ID so I can send it to you. And re-build/install it. Then re-create your problem one more time. If the new install goes well, you should see:
when you start rxd.pl. If you are successful in re-creating the failure, the trace output should be more reliable. I also suggest the following 1-line change to rxd.pl which whilst it won't cure the problem; should make it less likely to occur -- assuming I've diagnosed the problem correctly. The change is to severely reduce the stack size allocated to each thread:
Note: Anecdotal evidence suggest that this does not work under (some versions of) *nix. If that is one of your targets. (It might work with 64k rather than 4k, but that is a guess! I've never had any feedback to confirm or deny that.) A long term fixFinally, I think that the real fix for the problem -- assuming we can confirm my diagnosis -- is to limit the number of concurrent clients to some sane number. On windows, with the stack_size fix above, a moderately specified VM -- say 8GB memory -- should handle 100 concurrent clients okay. You'll need to tweak that number for your target environment. How I would implement that limiting is in the following code:
You might want to defer the rejection until you've accepted and validated the transmitted command and return a rejection/retry notification at that point if there are still too many concurrent clients. {Thwack!} Balls in your court :) Update: BTW, I also reduce testrdx.pl to this: <Reveal this spoiler or all in this thread>
Which both reduced system resource usage (by doing away with the threads waiting on clients) on my single machine tests and control the number of concurrent clients. With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
| [reply] [d/l] [select] |
by rmahin (Scribe) on Oct 22, 2012 at 21:28 UTC | |
by BrowserUk (Patriarch) on Oct 22, 2012 at 22:25 UTC | |
| |
|
Re^7: PANIC: underlying join failed threded tcp server
by BrowserUk (Patriarch) on Oct 18, 2012 at 23:56 UTC | |
Sight of the changes made to the OP code and threads.xs would make interpreting that output a possibility :) Also, what OS/version; Perl/version; threads/version? With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
| [reply] |
by rmahin (Scribe) on Oct 19, 2012 at 00:34 UTC | |
Changes made to rxd.pl
OS/Version: Microsoft Windows Server 2003 R2 Enterprise x64 Edition Service Pack 2 And this is a VM if that makes any difference. Perl/version: Active perl v5.16.1
threads/version: threads-1.86 Let me know if you need anything else! | [reply] [d/l] [select] |