Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

What are the most common InputFormats in Hadoop?

avatar
New Member
 
1 ACCEPTED SOLUTION

avatar
Not applicable

@Renuka Peshwani

In Hadoop, Input files stores the data for a Map Reduce job. Input files which stores data typically reside in HDFS. Thus, in Map Reduce, Input Format defines how these input files split and read. Input Format creates Input split.

Most common Input Format are:

File Input Format-It is the base class for all file-based Input Format. It specifies input directory where data files are present. File Input Format also read all files. And, then divides these files into one or more Input Splits.

Text Input Format-It is the default Input Format of Map Reduce. It uses each line of each input file as separate record. Thus, performs no parsing.

  • Key- byte offset.
  • Value- It is the contents of the line, excluding line terminators.

Example content of file- is john may which katty

  • Key- 0
  • Value- is john may which katty

Key Value Text Input Format-It is similar to Text Input Format. Hence, it treats each line of input as a separate record. But the main difference is that Text Input Format treats entire line as the value. While the Key Value Text Input Format breaks the line itself into key and value by the tab character (‘/t’).

  • Key- Everything up to tab character.
  • Value- Remaining part of the line after tab character.

Example content of file- is -> john may which katty

  • Key- is
  • Value- john may which katty

Tab character “->”

Sequence File Input Format- It is the Input Format which reads sequence files. Key & Value- Both are user-defined.

Follow the link to learn more about Input Format in Hadoop

View solution in original post

2 REPLIES 2

avatar

The most common Input formats are
1. FileInputFormat (Base class for all)
2. TextInputFormat
3. KeyValueTextInputFormat

4. SequenceFileInputFormat
5. BinaryInputFormat

avatar
Not applicable

@Renuka Peshwani

In Hadoop, Input files stores the data for a Map Reduce job. Input files which stores data typically reside in HDFS. Thus, in Map Reduce, Input Format defines how these input files split and read. Input Format creates Input split.

Most common Input Format are:

File Input Format-It is the base class for all file-based Input Format. It specifies input directory where data files are present. File Input Format also read all files. And, then divides these files into one or more Input Splits.

Text Input Format-It is the default Input Format of Map Reduce. It uses each line of each input file as separate record. Thus, performs no parsing.

  • Key- byte offset.
  • Value- It is the contents of the line, excluding line terminators.

Example content of file- is john may which katty

  • Key- 0
  • Value- is john may which katty

Key Value Text Input Format-It is similar to Text Input Format. Hence, it treats each line of input as a separate record. But the main difference is that Text Input Format treats entire line as the value. While the Key Value Text Input Format breaks the line itself into key and value by the tab character (‘/t’).

  • Key- Everything up to tab character.
  • Value- Remaining part of the line after tab character.

Example content of file- is -> john may which katty

  • Key- is
  • Value- john may which katty

Tab character “->”

Sequence File Input Format- It is the Input Format which reads sequence files. Key & Value- Both are user-defined.

Follow the link to learn more about Input Format in Hadoop