Each night a city web team must parse raw access logs into structured session features for analysts. Why is batch MapReduce a natural fit?
Select an answer to reveal the explanation.
Short Explanation
Last night's clickstream is a mountain of text you crush into tidy session tables by morning. That bulk parse-and-enrich job is MapReduce's comfort zone. Per-request personalization still needs a faster path.
Full Explanation
Log parsing and feature enrichment over large historical corpora align with MapReduce's batch throughput model: scan splits, emit structured records, write durable outputs for analysts. Sub-second request-time personalization and OLTP triggers are different latency classes. MapReduce readily handles text inputs; it is not limited to live video.