add parallel execution note to mapreduce
This commit is contained in:
parent
e27da01827
commit
a69d604cc2
|
|
@ -67,4 +67,7 @@ shared = {
|
|||
flow.run(shared)
|
||||
print("Individual Summaries:", shared["file_summaries"])
|
||||
print("\nFinal Summary:\n", shared["all_files_summary"])
|
||||
```
|
||||
```
|
||||
|
||||
> **Performance Tip**: The example above works sequentially. You can speed up the map phase by running it in parallel. See [(Advanced) Parallel](../core_abstraction/parallel.md) for more details.
|
||||
{: .note }
|
||||
Loading…
Reference in New Issue