Apache Spark with Python: error

前端 未结 8 1630
别跟我提以往
别跟我提以往 2021-01-28 16:42

New to Spark. Downloaded everything alright but when I run pyspark I get the following errors:

Type \"help\", \"copyright\", \"credits\" or \"license\" for more          


        
8条回答
  •  终归单人心
    2021-01-28 17:14

    I come across the error:

    raise IllegalArgumentException(s.split(': ', 1)[1], stackTrace)
    pyspark.sql.utils.IllegalArgumentException: u"Error while instantiating 'org.apache.spark.sql.hive.HiveSessionStateBuilder'
    

    this is because i already run ./bin/spark-shell

    So, just kill that spark-shell, and re-run ./bin/pyspark

提交回复
热议问题