module
0.0.0-20241014165210-2cb77a03b897
Repository: https://github.com/ivanlemeshev/mapreduce.git
Documentation: pkg.go.dev
# README
Implementing MapReduce in Go
An implementation of MapReduce framework in Go to learn how it works and and understand the concepts behind it.
It is based on the paper MapReduce: Simplified Data Processing on Large Clusters by Jeffrey Dean and Sanjay Ghemawat from Google.
It uses word count as the example to implement MapReduce.
Run the sequential implementation
go run ./cmd/sequential/main.go -input ./data/input.txt -output ./data/output.txt