I am looking for something that will make it easy to run (correctly coded) embarrassingly parallel JVM code on a cluster (so that I can use Clojure + Incanter).

I have used Parallel Python in the past to do this. We have a new PBS cluster and our admin will soon set up IPython nodes that use PBS as the backend. Both of these systems make it almost a no-brainer to run certain types of code in a cluster.

I made the mistake of using Hadoop in the past (Hadoop is just not suited to the kind of data that I use) - the latency made even small runs execute for 1-2 minutes.

Is JPPF or Gridgain better for what I need? Does anyone here have any experience with either? Is there anything else you can recommend?

link|improve this question
feedback

5 Answers

up vote 2 down vote accepted

Clojure is reported to work on Terracotta, subject to some patching.

link|improve this answer
feedback

Check out cascalog - http://github.com/nathanmarz/cascalog

link|improve this answer
feedback

Look at Skandium

link|improve this answer
Looks promising, but GPL is a pain in the ass. – Robert Harvey Mar 27 '10 at 19:44
feedback

I suggest you look at Skandium, alternative licenses to GPL can be negotiated with the developers upon request.

link|improve this answer
feedback

I have heard that Scala has better support for concurrency than Java does.

link|improve this answer
Question refers to Clojure, not Scala. Both have good concurrency libraries, and both compile to Java bytecode, so JVM-aware tools are the relevant answer. – Stuart Sierra Mar 27 '10 at 19:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.