Skip to content

Instantly share code, notes, and snippets.

View ViacheslavK's full-sized avatar

Viacheslav Klevchenia ViacheslavK

View GitHub Profile
@ViacheslavK
ViacheslavK / DISTRIBUTEDC.md
Last active June 13, 2022 11:08 — forked from yclim95/DISTRIBUTEDC.md
Distributed Computing

##Map Reduce

  1. Map/Reduce Library partitions the input data into M pieces of typically 16-64 MB.

    True.

  2. If there are M partitions of the input, there are M map workers running simultaneously.

False. There are generally less worker nodes than partitions.