How many instance of Input Format will run for specific Map Reduce Job?

Free Online Certification Courses – Learn Today. Lead Tomorrow. Forums Apache Hadoop How many instance of Input Format will run for specific Map Reduce Job?

Viewing 1 reply thread
  • Author
    Posts
    • #6178
      DataFlair TeamDataFlair Team
      Spectator

      How many instance of Input Format will run for specific Map Reduce Job?

    • #6179
      DataFlair TeamDataFlair Team
      Spectator

      InputFormat in MapReduce defines how the input files are split up and read. It breaks the file into splits and divides them into records(With RecordReader).
      No. of instances the InputFormat will be called is only once for a specific MapReduce job, as its job is only to fetch the input files and logically split them, which is done only at the time of MapReduce job execution.

      For more detail please follow: InputFormat in Hadoop

Viewing 1 reply thread
  • You must be logged in to reply to this topic.