MapReduce - alkemyTech/OT234-python GitHub Wiki

A Beginners Introduction into MapReduce

https://towardsdatascience.com/a-beginners-introduction-into-mapreduce-2c912bb5e6ac

Formación de Julián del 08/04/2022

https://drive.google.com/drive/u/0/folders/1Ki3vcqjVjZMcfE1Xj10akQRDhRQONwRC

MapReduce en Python

https://youtu.be/hUes6y2b--0

Python Tips

https://book.pythontips.com/en/latest/map_filter.html

Concepto MapReduce

https://youtu.be/3godmAmorfA

Ejemplo MapReduce

https://youtu.be/PAAwR4eRuBY

MapReduce with Python

Learn how MapReduce deal with BIG data using the MRjob Python library

https://medium.com/geekculture/mapreduce-with-python-5d12a772d5b3

Introducción a MapReduce

https://towardsdatascience.com/a-beginners-introduction-into-mapreduce-2c912bb5e6ac

Run Python MapReduce on local Docker Hadoop Cluster

https://dev.to/boyu1997/run-python-mapreduce-on-local-docker-hadoop-cluster-1g46

FIX ERROR

Correr en docker estos comandos para instalar python

docker exec -it namenode bash -c "apt update && apt install python -y"

docker exec -it datanode bash -c "apt update && apt install python -y"

docker exec -it resourcemanager bash -c "apt update && apt install python -y"

docker exec -it nodemanager bash -c "apt update && apt install python -y"

https://github.com/big-data-europe/docker-hadoop/issues/95