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
+4 -1
View File
@@ -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 }