Why spark application fail with “executor.CoarseGrainedExecutorBackend: Driver Disassociated”?

后端 未结 2 599
迷失自我
迷失自我 2020-12-02 15:00

When i execute query sql via spark-submit and spark-sql, corresponding spark application always fail with error follows:

15/03/10 18:50:52 INFO util.AkkaUtil         


        
相关标签:
2条回答
  • 2020-12-02 15:26

    Finally I found the reason. It is because Yarn kills the executor (container) because the executor is memory overhead. Just turn up values of spark.yarn.driver.memoryOverhead or spark.yarn.executor.memoryOverhead or both.

    0 讨论(0)
  • 2020-12-02 15:27

    In my case, I resolve this problem by increasing the number of parallel task that read data to RDD

    0 讨论(0)
提交回复
热议问题