|
News Feed
|
LinuxHPC.org.org has an RSS/RDF feed if you wish to include it on your website.
|
 |
 |
Linux Cluster RFQ Form
Reach Multiple Vendors With One Linux Cluster RFQ Form. Save time and effort, let LinuxHPC.org do all the leg work for you free of charge. Request A Quote...
|
|

|
LinuxHPC.org is Looking for Interns - If you have experience with Linux clusters and/or cluster applications and you're interested in helping out with LinuxHPC.org let me know. I can promise the experience will be rewarding and educational, plus it'll make good resume fodder. You'll work with vendors and cluster users from around the world. We're also looking for writers and people to do hardware/software reviews. Contact Ken Farmer.
|
|


TaskMaster, a task distribution library
|
|
Saturday January 26 2002 @ 04:06AM EST
|
|
I've developed a task distribution system I call TaskMaster.
TaskMaster distributes 'runnable' task objects to a set of client machines on a network or in a cluster. Task objects are 'runnable' so long as they define a 'run' method in their class definition - it should be noted that TaskMaster is written in Ruby a dynamically typed, object oriented scripting language. Due to Ruby's being dynamically typed, it doesn't matter what type your task object is, only that it's public interface defines a 'run' method. TaskMaster distributes these task objects to available clients and the clients invoke the 'run' method of the task objects. Users of TaskMaster can create their own runnable task objects so there is no limit to the types of tasks which can be distributed. After tasks complete clients are 'harvested' (results and data are returned from the client) which makes them available to receive more tasks.
TaskMaster was originally developed as the heart of a distributed test system in which complex testcases were distributed to multiple client machines. Since there were thousands of testcases in the testsuite, distributing testcases to multiple clients greatly increased throughput.
TaskMaster is well suited for many types of applications where tasks need to be distributed to multiple clients, such as:
* testcase distribution to multiple clients in order to speed up regression testing
* distributed builds (with a networked filesystem)
* building and installing software on multiple machines simultaneously (using TaskMaster's broadcast mode)
TaskMaster is very flexible and can be configured by programming in Ruby (see:
http://www.ruby-lang.org for more info on Ruby. )
You can download TaskMaster from:
http://www.aracnet.com/~ptkwt/ruby_stuff/TaskMaster
Please note that TaskMaster is currently usable, but that the API is still subject to some change. I also need to create more documentation and some examples. If you want to try it out you'll need to install Ruby (see the Ruby link above). Within the next week or two I'll be including some demo applications which can be used as examples for building your own distribution apps.
Finally, TaskMaster is open source software available under GPL and Ruby's license.
|
|
|
 |
 |