-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Cannot Reproduce
-
Affects Version/s: 0.8.1
-
Fix Version/s: None
-
Component/s: zeppelin-interpreter
-
Labels:None
-
Environment:
Zeppelin 0.8.1. Spark 2.2.2 . RHEL 7.
If I define a Spark UDF such as the following:
import org.apache.spark.sql.SQLContext import org.apache.spark.sql.functions._ import spark.implicits._ val data = sqlContext.range(0, 5) val testudf = udf { (num: Integer) => num * num } val udfcol = data.withColumn("id_square", testudf($"id")) udfcol.show()
With the new interpreter, I randomly get an error similar to SPARK-9219. Setting zeppelin.spark.useNew to false appears to consistently work correctly
- blocks
-
ZEPPELIN-4098 0.8.2 Release
-
- Open
-
- is a clone of
-
ZEPPELIN-4115 Case classes do not work with Spark New Interpreter
-
- Closed
-