美文网首页
Cluster deploy mode is currently

Cluster deploy mode is currently

作者: 焉知非鱼 | 来源:发表于2017-11-25 17:14 被阅读240次
    /app/spark/bin/spark-submit --master spark://10.0.0.46:7077  --deploy-mode cluster --driver-memory 2g --executor-memory 4g --executor-cores 2 /home/spark/aldstat_page_view.py 1                                                   
    

    Error: Cluster deploy mode is currently not supported for python applications on standalone clusters.

    改为本地模式:

    /app/spark/bin/spark-submit --master spark://10.0.0.46:7077  --deploy-mode client --driver-memory 2g --executor-memory 4g --executor-cores 2 /home/spark/aldstat_page_view.py 1
    

    相关文章

      网友评论

          本文标题:Cluster deploy mode is currently

          本文链接:https://www.haomeiwen.com/subject/simcbxtx.html