Ingest pipelines write large files into HDFS for durable analytics storage. What conceptual write behavior should operators expect?
Select an answer to reveal the explanation.
Short Explanation
When the pipeline lands a big file, HDFS does not just tip its hat. It places blocks on DataNodes and replicates them so one dead disk is not a disaster.
Full Explanation
Conceptually, HDFS writes place block data on DataNodes and replicate according to the configured replication factor as part of durable storage semantics. Metadata records block membership, but bulk bytes live on DataNodes. Assuming no replication or NameNode-only storage misunderstands HDFS durability for production municipal pipelines.