1
vote
3answers
86 views

Use infiniband with Akka in Scala?

Is it possible to use infiniband instead of TCP/IP with Akka? I want to use Akka for HPC on the local cluster and the network bottleneck is significant using TCP/IP...
0
votes
3answers
178 views

Distributed failsafe jobqeues for JVM

I need to implement a job queue for a distributed JVM application. The queue(s) must hold a group of jobs (i.e. Java runnables) that have to be executed in sequential order. There will be hundreds of ...
0
votes
1answer
160 views

Application using akka deployed in a weblogic cluster

I am currently developping an application which will be deployed in a weblogic application server cluster. This application is consuming some JMS messages through a MDB and process some business logic ...
1
vote
1answer
90 views

Akka 2.1.0-RC cluster router terminating because of no found routees issue

I am writing a java/scala akka proof of concept and currently I am fumbling with the actor concept in a cluster environment. Specification I have a specific situation where a system sends the same ...
2
votes
1answer
158 views

Submission of Scala code to a cluster

Is it possible to run some akka code on the oracle grid engine with the use of multiple nodes? So if I use the actor-model, which is a "message-passing model", is it possible to use Scala and the ...
0
votes
0answers
174 views

Deploying remote Akka Cluster in application server [closed]

I am using play framework and will like to build a remote cluster with akka java and will like the akka cluster to be linked to the play framework by for example a network cable my question is ...
0
votes
0answers
125 views

remote clustering with akka [closed]

am trying my hands on the java akka pi calculation. after running the tutorials , I want to run it as a remote service that is connected to the play framework but the tutorial is bootstrap with ...
1
vote
1answer
574 views

Cluster computing with java , Akka and Play 2 framewrok

I want to built a cluster system that will involve load balancing , parallel activities using Java with Akka and play 2 framework. I have read about the Akka remote clustering , and distributing task ...
2
votes
1answer
371 views

Cluster Akka/Scala actors

can someone point me to the right content to learn about distributing Akka scala actors across several machines. I know that in the latest release of Akka there is location transparency. However, how ...
1
vote
1answer
420 views

Short term Akka deployment on multiple nodes

I'm writing a distributed research application with Akka using a simple master and multiple worker topology, with the aim of deploying to an internal cluster of nodes or within a corporate cloud. ...
3
votes
1answer
734 views

Akka Cluster Java API sample

I am pretty interested in testing out the 2.0-SNAPSHOT Akka cluster features, but for my purposes would like to do this in Java. I have read through the example here: ...
2
votes
2answers
565 views

Where can i find akka.cloud package?

Can someone point me to the Akka version that has the package akka.cloud.cluster? I am currently using Akka 1.2-RC6. google searches on this topic result in broken links about Cloudy Akka...
4
votes
1answer
869 views

Akka and state among actors in cluster

I am working on my bc thesis project which should be a Minecraft server written in scala and Akka. The server should be easily deployable in the cloud or onto a cluster (not sure whether i use proper ...