GridGain is a High Performance In-Memory Platform that enables processing of terabytes of data, in-memory, on 1000s of computers, in less than a second. (Source GridGain.com)

learn more… | top users | synonyms

0
votes
1answer
41 views

TCP handshake fails

I'm trying to connect 500 nodes on gridgain 2.1.1. and Windows Server 2008 R2 standard, but the topology recognizes only 100 nodes or so with the following errors. Any suggestions? 13/04/16 ...
0
votes
1answer
13 views

need clarity implementing interface GridTask<T,R>

I need clarity in implementing reduce() and map() methods of GridTask, How can we Pass arguments to these methods, Map map(List subgrid,T arg)throws GridException R reduce(List results)throws ...
0
votes
1answer
170 views

What are the suitable problems for Akka vs Gridgain? When is one more suitable than the other? [closed]

I am trying to understand the differences between Akka and Gridgain. Please explain when one is more suitable than the other and for what problems? http://akka.io/ http://www.gridgain.com/
0
votes
0answers
189 views

Hadoop and Gridgain comparison - Questions [closed]

I have just started reading about Hadoop/Gridgain and I understand at a high level that Gridgain is used for real time analytic processing and Hadoop is primarily used for offline batch analytic ...
1
vote
2answers
102 views

GridGain MapReduce clarity needed in function G.grid().reduce()

Firstly, I am a newbie to GridGain. I have used this example which is present in most of the sites.. int letterCnt = G.grid().reduce( GridClosureCallMode.SPREAD, F.yield("Counting Letters In This ...
0
votes
1answer
60 views

Is it possible to maintain tomcat configuration in server.xml, when deploying web apps via Eclipse?

When webapps are deployed via Eclipse to Tomcat, $catalina_home/conf/server.xml is getting overwritten by Eclipse. This means, whatever changes I make to server.xml prior to app deployment is ...
0
votes
2answers
117 views

How do i add remote nodes to the gridgain?

I am a newbie to Gridgain and i would like to know how do i add remote nodes to a program. is there some configuration file. i dont see a clear cut example anywhere in the guides. (the worst guide ...
2
votes
3answers
236 views

Enabling a OSGi/RCP plugin to load a class from another, non-dependent, plugin

I have a set of three RCP plug-ins: one is my main application plugin, another is a collection of calculations, and a third is a wrapper for GridGain, which among other things has to create instances ...
1
vote
2answers
201 views

MapReduce with “customized” key

I have the following problem: I have a lot of data in form of key-value pairs. The key is some id and the value - some piece of text. And my aim is to group that objects in clusters where the text ...
0
votes
1answer
261 views

Replacing HBase caching with a separate Caching product

Can the caching mechanism used in HBase be replaced with a different Caching product such as Memcache, Gemfire, GridGain etc. ?
0
votes
1answer
451 views

Spring Batch as ETL for Call Data Record Loading in to DB -Telecom

If anyone can share information ,about spring batch used as an ETL Tools. Specifically in Telecom Companies for Call Data Record loading (CDR's) from Network switch.In House ETL developed using spring ...
0
votes
2answers
66 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
1answer
125 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
1answer
141 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
254 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 ...
1
vote
1answer
241 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" ...
3
votes
2answers
627 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
2answers
341 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
301 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 ...
4
votes
1answer
426 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 ...
1
vote
1answer
289 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 ...
1
vote
3answers
7k 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
451 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 ...
15
votes
12answers
13k 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 ...