質問 1
Explain the concept of lazy evaluation in Apache Spark.
Lazy evaluation is a strategy in which the execution of operations is delayed until the result is actually needed. This helps in optimizing the execution plan.
Example:
val filteredRDD = inputRDD.filter(x => x > 0)
filteredRDD.count()
復習用に保存
復習用に保存
この項目をブックマークに追加したり、難しい内容としてマークしたり、復習セットに入れたりできます。
役に立ちましたか?
コメントを追加
コメントを見る