我是学生,我尝试在Ubuntu上尝试安装apache spark 使用sbt / sbt汇编命令通过sbt构建火花我发现此错误 我已经尝试最大化仍然没有找到的堆的大小 这个问题的解决方案帮助我完成了这个问题。 我发现的错误
Attempting to fetch sbt
Launching sbt from build/sbt-launch-0.13.7.jar
Error occurred during initialization of VM
Could not reserve enough space for object heap
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.
答案 0 :(得分:1)
查看这篇文章: http://viralpatel.net/blogs/jvm-java-increase-heap-size-setting-heap-size-jvm-heap/
有时当您尝试构建并且没有足够的堆分配时,它会弹出,因此,在示例中,它们会在运行HelloWorld之前在命令行上增加堆大小:
java -Xms64m -Xmx256m HelloWorld