in reply to Clusters, Distributed Computing, and Perl
If you have a real computational problem to solve, then install Mosix, write your logic using fork when you can, and call it a day. If you want failover, write it as a web application, avoid silly things like shared memory, and put a load balancer in front of it. If your problem is embarrassingly parallel, but you need different machines to co-operate, don't bother with an official cluster. Instead communicate through a database, and keep a current status table of jobs that need to be done, have been started, etc.
Each of these has been called a cluster, they each solve different problems, and all are usable right now in Perl.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Clusters, Distributed Computing, and Perl
by hossman (Prior) on Oct 13, 2002 at 19:53 UTC | |
by Anonymous Monk on Oct 13, 2002 at 21:37 UTC | |
by strider corinth (Friar) on Oct 14, 2002 at 04:00 UTC |