美文网首页
MIT 6.824 Day1

MIT 6.824 Day1

作者: 非典型IT | 来源:发表于2018-10-10 22:02 被阅读0次

MapReduce

参考paper:https://pdos.csail.mit.edu/6.824/papers/mapreduce.pdf

Lab 1

Part 1
1. 完成sequential implementation
    1.1 function that divides up the output of a map task(doMap() function in common_map.go)
    1.2 function that gathers all the inputs for a reduce task(doReduce() function in common_reduce.go)

2. 测试方法
    2.1 set debugEnabled = true in common.go
    2.2 cd 6.824/src/mapreduce; go test -v -run Sequential

相关文章

网友评论

      本文标题:MIT 6.824 Day1

      本文链接:https://www.haomeiwen.com/subject/rdwmaftx.html