Skip to content

Commit f4c3ea8

Browse files
authored
some acrolynx suggestions
1 parent 2b94673 commit f4c3ea8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

articles/azure-functions/durable/durable-functions-best-practice-reference.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ That said the best practice for dealing with _large_ data is to keep it in exter
6161

6262
### Keep Entity data small
6363

64-
Just like for inputs and outputs to Durable Functions APIs, if an entity's explicit state is too large, you may run into memory issues. In particular, an Entity state needs to be serialized and de-serialized from storage on any request, so large states add serialization latency to each invocation. Therefore, if an Entity needs to track large data, it is recommended to offload the data to external storage and simply track some lightweight identifier in the entity that allows you to materialize the data from storage when needed.
64+
Just like for inputs and outputs to Durable Functions APIs, if an entity's explicit state is too large, you may run into memory issues. In particular, an Entity state needs to be serialized and de-serialized from storage on any request, so large states add serialization latency to each invocation. Therefore, if an Entity needs to track large data, it's recommended to offload the data to external storage and track some lightweight identifier in the entity that allows you to materialize the data from storage when needed.
65+
6566

6667
### Fine tune your Durable Functions concurrency settings
6768

@@ -72,7 +73,7 @@ A single worker instance can execute multiple work items concurrently to increas
7273
7374
### Invest in stress testing
7475

75-
As with anything performance related, the ideal concurrency settings and architechture of your app ultimately depends on your application's workload. Therefore, it is recommended that users to invest in a performance testing harness that simulates their expected workload and to use it to run performance and reliability experiments for their app.
76+
As with anything performance related, the ideal concurrency settings and architechture of your app ultimately depends on your application's workload. Therefore, it's recommended that users to invest in a performance testing harness that simulates their expected workload and to use it to run performance and reliability experiments for their app.
7677

7778
## Diagnostic tools
7879

0 commit comments

Comments
 (0)