Hadoop
Properties
tags
cscs/data_eng
created
11.10.2024, 18:31
modified
30.09.2025, 13:30
published
Empty
sources
Empty
topics
Hadoop, MapReduce, Distributed Computing
authors
Empty
ai-assisted
No
- Hadoop is an open-source framework primarily designed for distributed storage and processing of large datasets. Hadoop MapReduce is the original implementation of the Map-Reduce paradigm. It consists of two primary functions:
- Map: Processes input data, transforms it into intermediate key-value pairs.
- Reduce: Aggregates and processes the intermediate key-value pairs to produce the final result.
- Uses File System to cache and process data.