DRILL-5926: The TestValueVector tests would run out of memory. Increased the MaxDirectMemorySize for the forked test processes in the pom to avoid this.
Project: http://git-wip-us.apache.org/repos/asf/drill/repo Commit: http://git-wip-us.apache.org/repos/asf/drill/commit/680f9c13 Tree: http://git-wip-us.apache.org/repos/asf/drill/tree/680f9c13 Diff: http://git-wip-us.apache.org/repos/asf/drill/diff/680f9c13 Branch: refs/heads/master Commit: 680f9c1327c4e3d7dcc5a275df167c0c5e128049 Parents: efed7e3 Author: Timothy Farkas <[email protected]> Authored: Fri Nov 10 12:59:42 2017 -0800 Committer: Parth Chandra <[email protected]> Committed: Thu Jan 11 17:06:17 2018 -0800 ---------------------------------------------------------------------- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/drill/blob/680f9c13/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 7be5193..801b2c8 100644 --- a/pom.xml +++ b/pom.xml @@ -466,7 +466,7 @@ -Dorg.apache.drill.exec.server.Drillbit.system_options="org.apache.drill.exec.compile.ClassTransformer.scalar_replacement=on" -Ddrill.test.query.printing.silent=true -Ddrill.catastrophic_to_standard_out=true - -XX:MaxPermSize=512M -XX:MaxDirectMemorySize=3072M + -XX:MaxPermSize=512M -XX:MaxDirectMemorySize=4096M -Djava.net.preferIPv4Stack=true -Djava.awt.headless=true -XX:+CMSClassUnloadingEnabled -ea
