You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@bigtop.apache.org by GitBox <gi...@apache.org> on 2022/09/14 02:31:37 UTC

[GitHub] [bigtop] iwasakims commented on pull request #1008: BIGTOP-3814. Deploying Spark ThriftServer fails because it's launched too early.

iwasakims commented on PR #1008:
URL: https://github.com/apache/bigtop/pull/1008#issuecomment-1246155007

   @sekikn Hmm. Deployment by the following cmdline stucked.
   
   ```
   $ ./docker-hadoop.sh \
          --create 1 \
          --image bigtop/puppet:trunk-rockylinux-8 \
          --memory 16g \
          --repo file:///bigtop-home/output \
          --disable-gpg-check \
          --stack hdfs,yarn,mapreduce,spark
   ```
   
   How about using dependency between classes following existing convention? like
   
   ```
   diff --git a/bigtop-deploy/puppet/modules/spark/manifests/init.pp b/bigtop-deploy/puppet/modules/spark/manifests/init.pp
   index 06d804e5..bce16cff 100644
   --- a/bigtop-deploy/puppet/modules/spark/manifests/init.pp
   +++ b/bigtop-deploy/puppet/modules/spark/manifests/init.pp
   @@ -42,6 +42,7 @@ class spark {
   
        if ('spark-thriftserver' in $roles) {
          include spark::spark_thriftserver
   +      Class['Hadoop::Init_hdfs'] -> Class['Spark::Spark_thriftserver']
        }
   
      }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@bigtop.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org