Apache Spark Stages and Tasks: How Spark Executes Your Jobs
Apache Spark makes distributed data processing look deceptively simple. You write something like: It looks like a few lines of Python. But Spark has to answer several questions before this computation can actually run: This is where jobs, stages, and tasks become important. In the previous tutorial, we discussed how Spark builds a DAG (Directed … Read more