Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 398 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 398 Bytes

mapreduce

MapReduce architecture in Python

Running the Coordinator

make coordinator ARGS="--port 8000"

Running Workers

You can modify the number of workers to run in the Makefile. Currently it defaults to 8.

make worker ARGS="--task word_count --cport 8000"

where --task is the MapReduce task you would like to run, and --cport is the coordinator port.