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

https://github.com/bugenzhao/6.824-mapreduce

An implementation of "6.824 Lab 1: MapReduce (2021)" in async Rust.
https://github.com/bugenzhao/6.824-mapreduce

6824 distributed-systems mapreduce mit rpc

Last synced: 29 days ago
JSON representation

An implementation of "6.824 Lab 1: MapReduce (2021)" in async Rust.

Awesome Lists containing this project

README

          

# 6.824-MapReduce

An implementation of "6.824 Lab 1: MapReduce (2021)" in async Rust.

```bash
$ make APP=wc seq # sequential impl for reference
$ make APP=wc dist # distributed impl
$ make diff # compare the outputs
```

You may write your own _App_ in a crate named `app-myapp` and specify it through the `APP=myapp` override in Makefile. Take [app-indexer](app-indexer) for an example.