Lazy Evaluation in Apache Spark and its Advantage
Lazy Evaluation means that the execution will not start until an action is triggered. Transformations are lazy in nature meaning when we call some operation in RDD, it does not execute immediately. Now some advantages of this Lazy Evaluation in Spark: Increases Manageability :Using Apache Spark RDD lazy evaluation, users can freely organize their Apache …
Lazy Evaluation in Apache Spark and its Advantage Read More »