Matthew J Meyer created ZEPPELIN-3559:
-----------------------------------------
Summary: z.show only shows 13 rows from dataframe of 100
Key: ZEPPELIN-3559
URL: https://issues.apache.org/jira/browse/ZEPPELIN-3559
Project: Zeppelin
Issue Type: Bug
Components: GUI
Affects Versions: 0.8.1
Reporter: Matthew J Meyer
Attachments: Screenshot from 2018-06-20 22-27-24.png
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.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)