---
title: "What is the purpose of RecordReader in Hadoop?"  
description: "What is the purpose of RecordReader in Hadoop?"  
author: "Anonymous User"  
published: 2015-01-20  
updated: 2020-09-21  
canonical: https://www.mindstick.com/interview/2285/what-is-the-purpose-of-recordreader-in-hadoop  
category: ".net"  
tags: ["hadoop"]  
reading_time: 1 minute  

---

# What is the purpose of RecordReader in Hadoop?

**The InputSplit** has defined a slice of work, but does not describe how to access it. The RecordReader class actually loads the data from1 its source and converts it into (key, value) pairs suitable for reading by the Mapper. The RecordReader instance is defined by the Input Format.

## Answers

### Answer by Anonymous User

**The InputSplit** has defined a slice of work, but does not describe how to access it. The RecordReader class actually loads the data from1 its source and converts it into (key, value) pairs suitable for reading by the Mapper. The RecordReader instance is defined by the Input Format.


---

Original Source: https://www.mindstick.com/interview/2285/what-is-the-purpose-of-recordreader-in-hadoop

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
