简体   繁体   English

h2o群集总内存异常低

[英]h2o Cluster total memory unexpectedly low

I'm working on a remote server with 196 GB of ram but when I use h2o.init(nthreads = -1) it says that the total cluster memory is .96 GB. 我正在使用196 GB内存的远程服务器,但是当我使用h2o.init(nthreads = -1)时,它说群集的总内存为0.96 GB。 Furthermore, when I try to use max_mem_size = "2g" I get an error saying that the JVM could not be created. 此外,当我尝试使用max_mem_size =“ 2g”时,我收到一条错误消息,提示无法创建JVM。

Now, the server is using a 32 bit Java version and I do not have admin access. 现在,服务器正在使用32位Java版本,并且我没有管理员权限。 What do I need to do to get more cluster memory? 我需要怎么做才能获得更多的群集内存?

Thanks 谢谢

Now, the server is using a 32 bit Java version and I do not have admin access. 现在,服务器正在使用32位Java版本,并且我没有管理员权限。 What do I need to do to get more cluster memory? 我需要怎么做才能获得更多的群集内存?

This is the problem. 这就是问题。 32-bit processes can't allocate more than 4 GB of RAM. 32位进程不能分配超过4 GB的RAM。 So your 196 GB server effectively rendered useless with 32 bit JVM. 因此,使用32位JVM,您的196 GB服务器实际上无法使用。 Update to 64-bit JVM and it would solve it. 更新到64位JVM即可解决。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM