A Practical Tour of Spark SQL (PySpark): DataFrames, Columns, Windows, and More
blog.devops.dev·1d
🗄️Databases
Preview
Report Post

Spark SQL for Practitioners: The APIs You Use, The Engine You Don’t SeeI’ve been writing about Apache Spark recently, and my latest piece covers Spark’s architecture. You can check it out at the link below.That chapter was mostly an abstract, technical overview of Spark’s internal mechanisms. In this chapter, we’ll take a more practical approach by exploring Spark SQL.Throughout the article, we will consistently work with the same dataset (credit_risk_dataset.csv from Kaggle).Spark SQL is Spark’s structured data processing engine.It consists of multiple APIs (SQL strings, DataFrame API, programmatic expressions).A common misconception is to think of Spark SQL as a syntax, but it is rather an engine.A SQL query written as a string and a PySpark DataFrame transformation chain are different e…

Similar Posts

Loading similar posts...