Tagged Questions
GridGain is a High Performance Cloud Computing software that enables development of highly scalable distributed Java and Scala applications that perform on any grid or cloud infrastructure. (Source GridGain.com)
12
votes
12answers
7k views
What is the best library for Java to grid/cluster-enable your application?
This is the ability to run your application on a cluster of servers with the intent to distribute the load and also provide additional redundancy.
I've seen a presentation for GridGain and I was very ...
4
votes
1answer
225 views
Better to build or buy a compute grid platform?
I am looking to do some quite processor-intensive brute force processing for string matching. I have run my prototype in a multi-threaded environment and compared the performance to an implementation ...
3
votes
2answers
397 views
GridGain application that is slower than a multithreaded application on one machine
I have implemented my first GridGain application and am not getting the performance improvements I expected. Sadly it is slower. I would like some help in improving my implementation so it can be ...
1
vote
1answer
152 views
GridGain / Scala - Generate Jobs within existing Job
As a proof of concept, I'm building this extremely simple Twitter Friends crawler. Here's what it will do:
Execute CrawlJob for Twitter account "twitter-user-1"
Find all friends of "twitter-user-1"
...
1
vote
2answers
171 views
Running Eclipse Scala Plugin with previous version of Scala
The scala plugin seems to automatically download version 2.8 of Scala. I'l like to try out the Gridgain 3.0-beta, which currently only works with Scala 2.7.7. Since Gridgain 3.0-beta already ...
1
vote
2answers
182 views
Connecting to a Grid Cluster With GridGain
I know that out of the box that GridGain connects to the other clients through multicast, but is there a way to configure GridGain to accept connections outside of the local network? Also is there a ...
1
vote
1answer
211 views
Java Gridgain application starts to fail after 1 day of stress testing
So I have a an application which is running on top of gridgain and does so quite successfully for about 12-24 hours of stress testing before it starts to act funny. After this period of time the ...
0
votes
0answers
7 views
Auto discover the gridnode and share some jobs to the new grid which started at the middile of the jobs execution
Initially i started three grid nodes and i am having over 200 jobs in my java program. I have shared all the jobs to the grid nodes. Once if i run the application one more node will be introduced ...
0
votes
0answers
47 views
step executions for given job execution are expected to be already saved. ERROR GRIDGAIN
I receive the following error while i try to execute the step remotely in GRIDGAIN. kindly let me know the sloution.
2011-12-05 13:51:41,017 100115 ERROR ...
0
votes
1answer
93 views
writing a GridCacheStore implementation in scala with gridgain
Im trying to write a gridgain implementation for read-through and write-through for gridcache using scala. however im having trouble converting some of the method patterns using generics form java ...
0
votes
0answers
84 views
How do i get a default gridgain node in openvz discover other nodes on the same network
Im using proxmox and openvz containers. Im having trouble getting the default gridgain nodes to recognize nodes elsewhere on the network. pinging works without issue.
one of the errors im getting is
...
0
votes
1answer
134 views
Gridgain failover of master (sender) node
I am working on batch processing problem. Solution needs to handle failing hardware.
There is master node (which initiates tasks executions) and worker nodes which execute the jobs. I know how ...
0
votes
0answers
54 views
How to execute hudson builds in a grid using GridGain?
I need a way to distribuite the load from one machine to a grid that is managed by GridGain. I found that this can be achieved by calling a GridGain application from a Hudson plugin.
The GridGain ...
0
votes
3answers
3k views
Freeing java file handles
We have a rather large and complex application written in Java which is running on top of the Gridgain package. The problem I am having is that this application will sit there processing requests for ...
0
votes
1answer
327 views
Gridgain executor service
What are the advantages of using GridGain's GridExecutorService to execute jobs remotely vs using the @Gridify annotation?
You can pass an instance of java.lang.concurrent.ExecutorService to your ...