Repository: bigtop Updated Branches: refs/heads/master 07d903605 -> e07aa20f9
BIGTOP-2154. spark-shell doesn't start anymore without Hive libs in the classpath Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/e07aa20f Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/e07aa20f Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/e07aa20f Branch: refs/heads/master Commit: e07aa20f9134e78a8b486aed49008c09b8997894 Parents: 07d9036 Author: Konstantin Boudnik <[email protected]> Authored: Fri Jan 22 12:22:55 2016 -0800 Committer: Konstantin Boudnik <[email protected]> Committed: Fri Jan 22 14:43:02 2016 -0800 ---------------------------------------------------------------------- bigtop-deploy/puppet/modules/spark/manifests/init.pp | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/e07aa20f/bigtop-deploy/puppet/modules/spark/manifests/init.pp ---------------------------------------------------------------------- diff --git a/bigtop-deploy/puppet/modules/spark/manifests/init.pp b/bigtop-deploy/puppet/modules/spark/manifests/init.pp index b93be1d..ee42821 100644 --- a/bigtop-deploy/puppet/modules/spark/manifests/init.pp +++ b/bigtop-deploy/puppet/modules/spark/manifests/init.pp @@ -148,6 +148,13 @@ class spark { package { 'spark-core': ensure => latest, } +### This is an ungodly hack to deal with the consequence of adding +### unconditional hive-support into Spark +### The addition is tracked by BIGTOP-2154 +### The real fix will come in BIGTOP-2268 + package { 'spark-datanucleus': + ensure => latest, + } file { '/etc/spark/conf/spark-env.sh': content => template('spark/spark-env.sh'),
