nerdexam
Cloudera

CCD-410 · Question #53

On a cluster running MapReduce v1 (MRv1), a TaskTracker heartbeats into the JobTracker on your cluster, and alerts the JobTracker it has an open map task slot. What determines how the JobTracker…

The correct answer is E. The location of the InsputSplit to be processed in relation to the location of the node. The TaskTrackers send out heartbeat messages to the JobTracker, usually every few minutes, to reassure the JobTracker that it is still alive. These message also inform the JobTracker of the number of available slots, so the JobTracker can stay up to date with where in the…

Hadoop Ecosystem Fundamentals

Question

On a cluster running MapReduce v1 (MRv1), a TaskTracker heartbeats into the JobTracker on your cluster, and alerts the JobTracker it has an open map task slot. What determines how the JobTracker assigns each map task to a TaskTracker?

Options

  • AThe amount of RAM installed on the TaskTracker node.
  • BThe amount of free disk space on the TaskTracker node.
  • CThe number and speed of CPU cores on the TaskTracker node.
  • DThe average system load on the TaskTracker node over the past fifteen (15) minutes.
  • EThe location of the InsputSplit to be processed in relation to the location of the node.

How the community answered

(22 responses)
  • A
    9% (2)
  • B
    5% (1)
  • C
    5% (1)
  • E
    82% (18)

Explanation

The TaskTrackers send out heartbeat messages to the JobTracker, usually every few minutes, to reassure the JobTracker that it is still alive. These message also inform the JobTracker of the number of available slots, so the JobTracker can stay up to date with where in the cluster work can be delegated. When the JobTracker tries to find somewhere to schedule a task within the MapReduce operations, it first looks for an empty slot on the same server that hosts the DataNode containing the data, and if not, it looks for an empty slot on a machine in the same

Topics

#MapReduce v1#data locality#JobTracker#TaskTracker

Community Discussion

No community discussion yet for this question.

Full CCD-410 Practice