Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 614 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 614 Bytes

GoDoc

go-mapreduce

Go Map/Reduce Package

Functionality

The goal of go-mapreduce is to simplify the use of the common map/reduce pattern in Go. Essentially it takes the following 2 functions:

Map: Fan out function that typically retrieves data and applies some sort of transformation.

Reduce: Aggregation function that iterates over data emitted by the Map.

TODO

  • Map Function
  • Reduce Function
  • Report process stats
  • Docs
  • Tests
  • Benchmarks