-
Type:
Bug
-
Status: Resolved
-
Priority:
Major
-
Resolution: Duplicate
-
Affects Version/s: 0.8.1, 0.9.0
-
Fix Version/s: None
-
Component/s: GUI
-
Labels:None
Running:
%spark
val l = (1 to 100).toSeq
val v = List.tabulate(100)(n => n * n)
val df = sc.parallelize(l zip v).toDF("label","value")
df.show(100)
z.show(df)
results in expected interpreter output of spark showing 100 rows but the table shown in zeppelin via z.show only shows 13 rows.
If I switch to use the any of the chart visualizations (bar, line, area, etc), zeppelin correctly shows the expected 100 elements on the x axis.
zeppelin.spark.maxResult is set to default of 1000
Zeppelin was built from branch-0.8 using:
mvn clean package -Pspark-2.1 -Phadoop-2.4 -Pscala-2.10 -DskipTests
Running the same on 0.7.3 results in expected 100 rows in zeppelin table.