SparkContext Error - File not found /tmp/spark-events does not exist

前端 未结 4 1263
自闭症患者
自闭症患者 2021-02-01 18:57

Running a Python Spark Application via API call - On submitting the Application - response - Failed SSH into the Worker

My python application exists in



        
4条回答
  •  野的像风
    2021-02-01 19:29

    Use spark.eventLog.dir for client/driver program

    spark.eventLog.dir=/usr/local/spark/history
    

    and use spark.history.fs.logDirectory for history server

    spark.history.fs.logDirectory=/usr/local/spark/history
    

    as mentioned in: How to enable spark-history server for standalone cluster non hdfs mode

    At least as per Spark version 2.2.1

提交回复
热议问题