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 2017/10/04 14:03:29 UTC

[1/2] bigtop git commit: BIGTOP-2900. Crunch build failed because of OS OOM killer on OpenJDK 1.8.0-144 [Forced Update!]

Repository: bigtop
Updated Branches:
  refs/heads/branch-1.2 053e911dd -> 02acbb76a (forced update)


BIGTOP-2900. Crunch build failed because of OS OOM killer on OpenJDK 1.8.0-144


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

Branch: refs/heads/branch-1.2
Commit: a9f1c94d6695729132b0979a852d87a042283af1
Parents: 187cc80
Author: Evans Ye <ev...@apache.org>
Authored: Tue Oct 3 21:48:55 2017 +0800
Committer: Evans Ye <ev...@apache.org>
Committed: Wed Oct 4 22:02:44 2017 +0800

----------------------------------------------------------------------
 bigtop_toolchain/manifests/jdk.pp | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/bigtop/blob/a9f1c94d/bigtop_toolchain/manifests/jdk.pp
----------------------------------------------------------------------
diff --git a/bigtop_toolchain/manifests/jdk.pp b/bigtop_toolchain/manifests/jdk.pp
index 4e15eb1..cd0bda6 100644
--- a/bigtop_toolchain/manifests/jdk.pp
+++ b/bigtop_toolchain/manifests/jdk.pp
@@ -56,9 +56,24 @@ class bigtop_toolchain::jdk {
       apt::ppa { 'http://ppa.launchpad.net/openjdk-r/ppa/ubuntu':  }
     }
     /(CentOS|Amazon|Fedora)/: {
-      package { 'java-1.8.0-openjdk-devel' :
+      # BIGTOP-2900: Crunch build failed because of OS OOM killer on OpenJDK 1.8.0-144
+      # Here we pin other version of JDK for CentOS 7 and Fedora to workaround this problem
+      if ($::operatingsystem == "CentOS" and operatingsystemmajrelease == "7") {
+        $jdk = [
+          'java-1.8.0-openjdk-headless-1.8.0.131',
+          'java-1.8.0-openjdk-devel-1.8.0.131'
+        ]
+      }
+      elsif ($::operatingsystem == "Fedora") {
+        $jdk = 'java-1.8.0-openjdk-devel-1:1.8.0.111'
+      }
+      else {
+        $jdk = 'java-1.8.0-openjdk-devel-1:1.8.0'
+      }
+      package { $jdk :
         ensure => present
       }
+
       if ($::operatingsystem == "Fedora") {
         file { '/usr/lib/jvm/java-1.8.0-openjdk/jre/lib/security/cacerts':
           ensure => 'link',


[2/2] bigtop git commit: BIGTOP-2901: disable GPDB because of build failure on OpenSuSE 42.1

Posted by ev...@apache.org.
BIGTOP-2901: disable GPDB because of build failure on OpenSuSE 42.1

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/02acbb76
Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/02acbb76
Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/02acbb76

Branch: refs/heads/branch-1.2
Commit: 02acbb76a1dc5f33c6a566cfbc2a42273b24902e
Parents: a9f1c94
Author: Olaf Flebbe <of...@oflebbe.de>
Authored: Tue Oct 3 17:01:38 2017 +0200
Committer: Evans Ye <ev...@apache.org>
Committed: Wed Oct 4 22:03:02 2017 +0800

----------------------------------------------------------------------
 bigtop.bom | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/bigtop/blob/02acbb76/bigtop.bom
----------------------------------------------------------------------
diff --git a/bigtop.bom b/bigtop.bom
index 18163f9..7677f93 100644
--- a/bigtop.bom
+++ b/bigtop.bom
@@ -454,6 +454,7 @@ bigtop {
       url     { site = "https://github.com/quantcast/qfs/archive"
                 archive = site }
     }
+    /* commented out because of BIGTOP-2901
     'gpdb' {
       name    = 'gpdb'
       relNotes = 'GreenPlum'
@@ -462,7 +463,7 @@ bigtop {
                 source      = "${version.base}.tar.gz" }
       url     { site = "https://github.com/greenplum-db/gpdb/archive/"
                 archive = site }
-    }
+    } */
     'ambari' {
       name    = 'ambari'
       relNotes = 'Apache Ambari'