Skip to content

Commit 03b827f

Browse files
Update articles/azure-functions/durable/durable-functions-perf-and-scale.md
1 parent f453ef1 commit 03b827f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/durable/durable-functions-perf-and-scale.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ On a premium plan, automatic scaling can help to keep the number of workers (and
3131

3232
### CPU usage
3333

34-
**Orchestrator functions** execute their logic multiple times due to their replaying behavior, it's therefore important that orchestrator function threads do not perform CPU-intensive tasks, do I/O, or block for any reason. Any work that may require I/O, blocking, or multiple threads should be moved into activity functions.
34+
**Orchestrator functions** run their logic multiple times due to their replaying behavior. It's therefore important that orchestrator function threads do not perform CPU-intensive tasks, do I/O, or block for any reason. Any work that may require I/O, blocking, or multiple threads should be moved into activity functions.
3535

3636
**Activity functions** have all the same behaviors as regular queue-triggered functions. They can safely do I/O, execute CPU intensive operations, and use multiple threads. Because activity triggers are stateless, they can freely scale out to an unbounded number of VMs.
3737

0 commit comments

Comments
 (0)