Skip to main content

10 posts tagged with "MapReduce"

MapReduce programming model

View All Tags

Apache Spark Key Components Explained: RDDs, DataFrames, Datasets, and the DAG

· 9 min read
Bryan
Big Data Practitioner

If you have ever processed big data, you have almost certainly touched Apache Spark — and behind its speed sit four ideas worth understanding deeply: the RDD, the DataFrame, the Dataset, and the DAG. Master these and Spark stops feeling like magic; you can reason about why a job is fast, why a stage is slow, and how Spark recovers when a node dies.

This article is a from-scratch tour of Spark's key components and its execution model. It pairs with our companion post on how Spark supports big data processing — there we covered the why; here we go under the hood into the what and how.

How Does Apache Spark Support Big Data Processing? In-Memory Speed, DAGs, and a Unified Engine

· 7 min read
Bryan
Big Data Practitioner

Apache Spark supports big data processing by combining in-memory computation, distributed execution across a cluster, and a single unified programming model that covers batch, streaming, machine learning, and graph workloads. Where older systems wrote intermediate results to disk at every step, Spark keeps working data in memory and orchestrates it with a smart execution engine — which is why it became the default processing layer for modern big data.

This guide explains how Spark actually does this: the architecture that makes it fast, the libraries that make it flexible, and the optimizations that make it efficient — without requiring you to be a distributed-systems expert.

Hadoop YARN Architecture Explained: Components, Workflow, and How It Works

· 7 min read
Bryan
Big Data Practitioner

YARN — short for "Yet Another Resource Negotiator" — is the layer that turned Hadoop from a single-purpose MapReduce engine into a general-purpose cluster operating system. Introduced in Hadoop 2.0, it pulled resource management out of MapReduce and made it a service in its own right, so Spark, Flink, Tez, and batch MapReduce could all share the same cluster.

This guide breaks down the YARN architecture in plain terms: the daemons that run it, how a job flows through the system from submission to shutdown, and the real-world strengths and trade-offs of running YARN.

What Is Hadoop? A Plain-English Guide to Big Data's Foundational Framework

· 9 min read
Bryan
Big Data Practitioner

Apache Hadoop is an open-source framework that stores and processes enormous datasets by spreading the work across a cluster of ordinary computers instead of relying on one expensive machine. If a single server would buckle under the volume, Hadoop splits the data into pieces, hands each piece to a different node, and lets them all work in parallel.

This guide explains what Hadoop is in plain language: where it came from, the four components that make it tick, what people actually use it for, its strengths and weaknesses, and a practical path to learning it in 2026.

GFS vs HDFS: How Google's File System Shaped Hadoop Storage

· 9 min read
Hadoop.so Editorial Team
Big Data Engineers

Every modern big data platform owes a debt to one 2003 research paper. When Google published The Google File System, it described how to store petabytes of data reliably on top of cheap, failure-prone commodity machines. That paper directly inspired the Hadoop Distributed File System (HDFS), the storage layer that launched the open-source big data movement. Understanding GFS vs HDFS is the fastest way to understand why distributed storage looks the way it does today.

Why Hadoop Is Declining: 10 Reasons Enterprises Are Moving On

· 11 min read
Hadoop.so Editorial Team
Big Data Engineers

Apache Hadoop defined the first decade of enterprise big data. It gave organizations a way to store and process datasets too large for any single machine, running on cheap commodity hardware with no licensing costs. For a window between roughly 2010 and 2017, it was the default answer to almost every large-scale data problem.

That window has closed. The data landscape today looks nothing like the one Hadoop was built for, and many organizations are discovering that maintaining aging Hadoop infrastructure is costing them more — in time, money, and missed opportunities — than migrating to something newer.

How Hadoop Software Powers Big Data Analytics: Architecture, Benefits, and Industry Use Cases

· 19 min read
Hadoop.so Editorial Team
Big Data Engineers

Every two days, the world generates as much data as was created in all of human history up to 2003. Social media activity, IoT sensors, financial transactions, medical devices, logistics telemetry — data now flows from every corner of modern operations. The question is no longer whether organizations have data, but whether they have the infrastructure to turn it into decisions.

Apache Hadoop has been the answer to that question for over a decade. Originally built to index the entire web, Hadoop evolved into the foundational platform for distributed big data processing — a framework that lets organizations store and analyze datasets that would overwhelm any single server, without needing expensive proprietary hardware.

This guide explains how Hadoop software works under the hood, what makes it uniquely suited for large-scale analytics, and how organizations across banking, healthcare, logistics, and media are using it today.