nerdexam
Cloudera

CCA-410 · Question #49

In the execution of a MapReduce job, where does the mapper place the intermediate data in each map task?

The correct answer is A. The mapper stores the intermediate data on the underlying filesystem of the local disk of the machine. mapreduce.cluster.local.dir The local directory where MapReduce stores intermediate data files. May be a comma-separated list of directories on different devices in order to spread disk i/o. Directories that do not exist are

Resource Management

Question

In the execution of a MapReduce job, where does the mapper place the intermediate data in each map task?

Options

  • AThe mapper stores the intermediate data on the underlying filesystem of the local disk of the machine
  • BThe mapper transfers the intermediate data to the jobtracker, which then sends it to the reducers
  • CThe hadoop framework holds the intermediate data in the task trackers memory until it is transferred to
  • DThe mapper transfer the intermediate data immediately to the reducers as it is generated by map task.

How the community answered

(24 responses)
  • A
    79% (19)
  • B
    4% (1)
  • C
    4% (1)
  • D
    13% (3)

Explanation

mapreduce.cluster.local.dir The local directory where MapReduce stores intermediate data files. May be a comma-separated list of directories on different devices in order to spread disk i/o. Directories that do not exist are

Topics

#MapReduce#intermediate data#local disk#map task

Community Discussion

No community discussion yet for this question.

Full CCA-410 Practice