Spark Read JSON file

In this blog we will understand how to read a Json file using Spark and load it into a dataframe. All the code examples is […]

Spark Dataframe Actions

When we call an Action on a Spark dataframe all the Transformations gets executed one by one. This happens because of Spark Lazy Evaluation which […]