An open API service indexing awesome lists of open source software.

https://github.com/oaarnikoivu/mapreduce

MapReduce architecture in Python
https://github.com/oaarnikoivu/mapreduce

concurrency mapreduce pydantic python rpc xmlrpc

Last synced: about 1 year ago
JSON representation

MapReduce architecture in Python

Awesome Lists containing this project

README

          

# mapreduce

MapReduce architecture in Python

## Running the Coordinator

```bash
make coordinator ARGS="--port 8000"
```

## Running Workers

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

```bash
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.