- Mastering Hadoop
- Sandeep Karanth
- 226字
- 2021-08-06 19:53:00
The RecordReader class
Unlike InputSplit
, the RecordReader
class presents a record view of the data to the Map task. RecordReader
works within each InputSplit
class and generates records from the data in the form of key-value pairs. The InputSplit
boundary is a guideline for RecordReader
and is not enforced. On one extreme, a custom RecordReader
class can be written to read an entire file (though this is not encouraged). Most often, a RecordReader
class will have to read from a subsequent InputSplit
class to present the complete record to the Map task. This happens when records overlap InputSplit classes.
The reading of bytes from a subsequent InputSplit
class happens via the FSDataInputS
tream
objects. Though this reading does not respect locality in itself, generally, it gathers only a few bytes from the next split and there is not a significant performance overhead. But in some cases where record sizes are huge, this can have a bearing on the performance due to significant byte transfers across nodes.
In the following diagram, a file with two HDFS blocks has the record R5 spanning both blocks. It is assumed that the minimum split size is less than the block size. In this case, RecordReader
is going to gather the complete record by reading bytes off the next block of data.

File with two blocks and record R5 spanning blocks
- Introduction to DevOps with Kubernetes
- 計算機圖形圖像處理:Photoshop CS3
- 大數據挑戰與NoSQL數據庫技術
- OpenStack Cloud Computing Cookbook(Second Edition)
- 自動生產線的拆裝與調試
- AWS Administration Cookbook
- CompTIA Linux+ Certification Guide
- 數據掘金
- 水下無線傳感器網絡的通信與決策技術
- 突破,Objective-C開發速學手冊
- Windows Server 2008 R2活動目錄內幕
- 統計挖掘與機器學習:大數據預測建模和分析技術(原書第3版)
- PowerPoint 2010幻燈片制作高手速成
- Raspberry Pi Projects for Kids
- Flash 8中文版全程自學手冊