我在zeppelin中执行了一项繁重的任务,这样当我多次运行该段时,Zeppelin / jobs状态页面将返回带有OOM的HTTP 500错误。
可能的原因是什么?
我正在运行带有火花的客户端模式。
答案 0 :(得分:0)
在Zeppelin的火花翻译中OOM可能有很多原因。一个可能的原因是
scala> case class A() defined class A scala> new A() res0: A = A() scala> new A() res1: A = A() scala> List(1, 2, 3, 4).map(x => x+1) // anonymous function
您可以通过在spark.driver.memory
$SPARK_HOME/conf/spark-defaults.conf
来增加驱动程序内存
localhost:8080/#/interpreter
,spark interpreter configuration)auto-restart interpreter on cron execution
。