问题描述
-
从.csv文件加载数据( 100万到5000万的数据)使用 GridDataLoader 发送给Gridgain。
-
从加载的数据中查找最小值,最大值,平均值等,
Load data from a .csv file (1 million to 50 million data) to the Gridgain using GridDataLoader.
Find the min, max, average, etc. from the data loaded,
当在eclipse中作为独立应用程序运行时,我得到的输出是正确的。
但是在创建集群时2个服务器+ 1个节点,在我的eclipse环境中),我得到 java.lang.OutOfMemoryError:超出GC开销限制错误。
我使用的配置文件是
更改eclipse.ini的Xmx属性可能会解决问题。
将其更改为-Xmx3g
I'm trying to set up a Gridgain cluster with 2 servers.
When running as a standalone application in eclipse I'm getting correct output.
But while making a cluster (2 nodes in the 2 servers + 1 node inside my eclipse environment), I'm getting java.lang.OutOfMemoryError: GC overhead limit exceeded error.
The configuration file I'm using is http://pastebin.com/LUa7gxbe
Changing eclipse.ini's Xmx property might solve the problem.Change it to -Xmx3g
这篇关于Gridgain:java.lang.OutOfMemoryError:超出GC开销限制的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!