Reputation: 74619
Compare the following structured queries and their execution plans in web UI.
I use the same dataset for two different queries.
val names = Seq("Jacek").toDF("name")
The following basic query has no SQL metrics in web UI
names.show
Surprisingly the query has number of output rows metric.
names.count
Why?
Upvotes: 1
Views: 184