You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by ev...@apache.org on 2015/04/11 21:59:59 UTC

bigtop git commit: BIGTOP-1823. BigPetStore pig : Increase JVM Memory min.

Repository: bigtop
Updated Branches:
  refs/heads/master 72b0f7903 -> b60dbda99


BIGTOP-1823. BigPetStore pig : Increase JVM Memory min.

Signed-off-by: Evans Ye <ev...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo
Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/b60dbda9
Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/b60dbda9
Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/b60dbda9

Branch: refs/heads/master
Commit: b60dbda997048c2620f02e00ead3fc33e8083d1e
Parents: 72b0f79
Author: jayunit100 <ja...@gmail.com>
Authored: Fri Apr 10 18:18:03 2015 -0400
Committer: Evans Ye <ev...@apache.org>
Committed: Sat Apr 11 19:59:04 2015 +0000

----------------------------------------------------------------------
 bigtop-bigpetstore/bigpetstore-mapreduce/build.gradle | 7 +++++++
 1 file changed, 7 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/bigtop/blob/b60dbda9/bigtop-bigpetstore/bigpetstore-mapreduce/build.gradle
----------------------------------------------------------------------
diff --git a/bigtop-bigpetstore/bigpetstore-mapreduce/build.gradle b/bigtop-bigpetstore/bigpetstore-mapreduce/build.gradle
index c80672c..4bf5ce7 100644
--- a/bigtop-bigpetstore/bigpetstore-mapreduce/build.gradle
+++ b/bigtop-bigpetstore/bigpetstore-mapreduce/build.gradle
@@ -185,6 +185,13 @@ task integrationTest(type: Test, dependsOn: test) {
         case "pig":
             patternsToInclude = "*PigIT*"
             dependencyConfigClosure = { setupPigIntegrationTestDependencyVersions(it) }
+
+            //In pig integration tests, the custom pig script seems to have high
+            //memory requirements.
+            minHeapSize = "1000m"
+            maxHeapSize = "4000m"
+            // set JVM arguments for the test JVM(s)
+            jvmArgs '-XX:MaxPermSize=256m'
             break
         case "crunch":
             patternsToInclude = "*CrunchIT*"