浏览代码

HADOOP-15279. increase maven heap size recommendations

Signed-off-by: Jason Lowe <jlowe@apache.org>
Signed-off-by: Chris Douglas <cdouglas@apache.org>
Allen Wittenauer 7 年之前
父节点
当前提交
d4cc50f622
共有 2 个文件被更改,包括 3 次插入3 次删除
  1. 2 2
      BUILDING.txt
  2. 1 1
      dev-support/docker/Dockerfile

+ 2 - 2
BUILDING.txt

@@ -331,10 +331,10 @@ If the build process fails with an out of memory error, you should be able to fi
 it by increasing the memory used by maven which can be done via the environment
 it by increasing the memory used by maven which can be done via the environment
 variable MAVEN_OPTS.
 variable MAVEN_OPTS.
 
 
-Here is an example setting to allocate between 256 MB and 1 GB of heap space to
+Here is an example setting to allocate between 256 MB and 1.5 GB of heap space to
 Maven
 Maven
 
 
-export MAVEN_OPTS="-Xms256m -Xmx1g"
+export MAVEN_OPTS="-Xms256m -Xmx1536m"
 
 
 ----------------------------------------------------------------------------------
 ----------------------------------------------------------------------------------
 
 

+ 1 - 1
dev-support/docker/Dockerfile

@@ -173,7 +173,7 @@ RUN apt-get -y install nodejs && \
 ###
 ###
 # Avoid out of memory errors in builds
 # Avoid out of memory errors in builds
 ###
 ###
-ENV MAVEN_OPTS -Xms256m -Xmx1g
+ENV MAVEN_OPTS -Xms256m -Xmx1536m
 
 
 
 
 ###
 ###