Skip to main content

9 posts tagged with "YARN"

YARN resource management and containers

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.

Hadoop 3 Features and Enhancements: A Deep Dive (2026)

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

Apache Hadoop 3 was the first release in nearly a decade that made operators rethink how they buy storage. Erasure coding cut disk overhead from 200% to 50%. The NameNode HA cap doubled, then more. The MapReduce shuffle path moved into native code. YARN learned to manage long-running services and Docker workloads. And every default port that lived in the Linux ephemeral range was moved out of it.

Several years after the 3.0 GA, Hadoop 3.3 and 3.4 lines are the de-facto on-prem standard, and most cloud Hadoop distributions (EMR, Dataproc, HDInsight, CDP) ship a 3.x core. This deep dive walks through every major feature in the Hadoop 3 line — what changed, why it matters, and where the tradeoffs hide — and ends with a side-by-side Hadoop 2.x vs 3.x comparison table.