IMPALA-5080: OutOfMemory PermGen space A previous fix for this increased the MaxPermGen size. However, during the review process an extraneous character was accidentally inserted that rendered the fix ineffective.
Testing: - Ran the test, test_java_udfs, in a loop for a while. Change-Id: If0096384e419c0a059f555d325314e46e7ebfdb8 Reviewed-on: http://gerrit.cloudera.org:8080/6790 Reviewed-by: Alex Behm <[email protected]> Reviewed-by: Matthew Jacobs <[email protected]> Tested-by: Impala Public Jenkins Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/920641ff Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/920641ff Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/920641ff Branch: refs/heads/master Commit: 920641ffdce1618199ac4d18493151acfc96cda6 Parents: 698f4a3 Author: Thomas Tauber-Marshall <[email protected]> Authored: Wed May 3 11:46:38 2017 -0700 Committer: Impala Public Jenkins <[email protected]> Committed: Thu May 4 01:30:26 2017 +0000 ---------------------------------------------------------------------- bin/impala-config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/920641ff/bin/impala-config.sh ---------------------------------------------------------------------- diff --git a/bin/impala-config.sh b/bin/impala-config.sh index 53002fe..ada1591 100755 --- a/bin/impala-config.sh +++ b/bin/impala-config.sh @@ -433,7 +433,7 @@ export LIBHDFS_OPTS="${LIBHDFS_OPTS:-} -Djava.library.path=${HADOOP_LIB_DIR}/nat LIBHDFS_OPTS="${LIBHDFS_OPTS}:${IMPALA_HOME}/be/build/debug/service" # IMPALA-5080: Our use of PermGen space sometimes exceeds the default maximum while # running tests that load UDF jars. -LIBHDFS_OPTS="${LIBHDFS_OPTS} -XX:MaxPermSize=128mb" +LIBHDFS_OPTS="${LIBHDFS_OPTS} -XX:MaxPermSize=128m" export ARTISTIC_STYLE_OPTIONS="$IMPALA_BE_DIR/.astylerc"
