Answer Posted / Kiran Chhabra
In Apache Spark, transformations are executed lazily. This means that the operations you perform on an RDD or DataFrame (e.g., map, filter) are not executed immediately but rather only when an action is called (e.g., count, saveAsTextFile).
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers