Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

RE (tilly) 2: Threads vs Forking (Java vs Perl)

by tilly (Archbishop)
on Aug 25, 2000 at 19:30 UTC ( [id://29639]=note: print w/replies, xml ) Need Help??


in reply to RE: Threads vs Forking (Java vs Perl)
in thread Threads vs Forking (Java vs Perl)

Actually Cluster may have more to do with Multiprocessor than you think.

Larry McVoy has some interesting thoughts on this. Basically you never worry about SMP beyond about 4 CPUs or so. Instead you turn a thousand processor box into a virtual cluster...

Slides for his talk may be found here.

Replies are listed 'Best First'.
RE: RE (tilly) 2: Threads vs Forking (Java vs Perl)
by JanneVee (Friar) on Aug 25, 2000 at 20:30 UTC
    Actually Cluster may have more to do with Multiprocessor than you think.

    This I know... :)

    You can buy a 4 processor SMP or a 16 processor cluster at roughly the same cost. So start worrying. But the point is... It is not a good thing to use global variables (shared variables) for the locking problems(including the fine grained stuff that is in the slides) or bandwith reasons.

    But my conclusion on the slides (that I can make out with in a few minutes)... That it is more pro-forking than pro-threading. Am I correct?

    /Janne

      Well it is more anti-SMP than anything else. :-)

      But at a deeper level it is about why forking entire copies of the OS into a virtual cluster should scale better than trying the multi-threaded SMP approach. So yes, it does support forking.

      Besides which, if you take this approach, then on monster boxes forking should scale better than threading.

      An incidental note. There are problems that the 4 CPU box can outperform the 16-processor cluster at. But for most people the cluster is a better answer, and Linus is very aware of that.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://29639]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (8)
As of 2024-03-28 10:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found