https://github.com/antonio-pedro99/myown-map-reduce
A Simple implementation of map reduce.
https://github.com/antonio-pedro99/myown-map-reduce
Last synced: 7 months ago
JSON representation
A Simple implementation of map reduce.
- Host: GitHub
- URL: https://github.com/antonio-pedro99/myown-map-reduce
- Owner: antonio-pedro99
- Created: 2023-05-26T15:39:04.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-14T08:39:53.000Z (over 2 years ago)
- Last Synced: 2025-03-24T16:44:07.239Z (7 months ago)
- Size: 76.2 KB
- Stars: 4
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MapReduce
A Simple implementation of map reduce.## How to run the map-reduce program:
- Copy the relevant map.py and reduce.py in the functions folder
- run "python3 master.py" to run the program### Generate
python3 -m grpc_tools.protoc -I./ --python_out=. --pyi_out=. --grpc_python_out=./src ./proto/map_reduce.proto### For Compiling Proto file
- for inner
python3 -m grpc_tools.protoc -I./ --python_out=./src --pyi_out=./src --grpc_python_out=./src ./proto/map_reduce.proto
- for outer
python3 -m grpc_tools.protoc -I./ --python_out=. --pyi_out=. --grpc_python_out=. ./proto/map_reduce.proto