mr-combiner-is-map-side-only

Status: IN

The combiner runs inside `_run_mapper` on each mapper's output for a single partition independently; it never sees data from other mappers or other partitions.

Source: entries/2026/05/29/mapreduce-framework-mapreduce.md

Example

if self._combiner:
    combined = self._combiner(key, values)
    # applied after map, before shuffle to reduce

JSON