add parallel execution note to mapreduce

This commit is contained in:
Milosz Lopatto 2025-03-20 16:11:02 +01:00
parent e27da01827
commit a69d604cc2
1 changed files with 4 additions and 1 deletions

View File

@ -68,3 +68,6 @@ 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 }