Hello, friend!
1. The program is the MapReduce service program.
2. After the service program starts to run, it is divided into map task and reduece task map to read the file system data and reduce the output result.
3. Network optimization: MapReduce optimization is complex and needs to be analyzed based on the actual situation. For example, Hadoop decides to split a job into multiple independent map and reduce tasks for execution. It schedules the task and allocates the appropriate resources to it, and decides where to assign a task in the cluster. (If possible, it is usually the location of the data to be processed by the task to minimize network overhead.)
Hope this helps!