InterviewSolution
Saved Bookmarks
| 1. |
What Spark-SQL does, how it’s benefits to programmer to interact with database? And Syntax of creating SQL Context? |
|
Answer» Spark SQL provides programmatic abstraction in the form of data frame and data set which can work the principal of distributed SQL query engine. Spark SQL simplify the INTERACTION to the large amount of data through the dataframe and dataset.
Spark SQL plays a vital role on optimization technique using Catalyst optimizer, Spark SQL also support UDF, built in function and aggregates function. |
|