Skip to content

Commit a93b3a4

Browse files
JoshVanLmsfussell
authored andcommitted
[1.16] Adds configuration-overview.md section on Workflow (#4889)
* [1.16] Adds configuration-overview.md section on Workflow Fixes #4884 Signed-off-by: joshvanl <[email protected]> * Update configuration-overview.md Moving workflow section and adding link in the index Signed-off-by: Mark Fussell <[email protected]> --------- Signed-off-by: joshvanl <[email protected]> Signed-off-by: Mark Fussell <[email protected]> Co-authored-by: Mark Fussell <[email protected]>
1 parent 81b0967 commit a93b3a4

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

daprdocs/content/en/operations/configuration/configuration-overview.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,14 @@ A Dapr sidecar can apply a specific configuration by using a `dapr.io/config` an
6262
6363
### Application configuration settings
6464
65-
The following menu includes all of the configuration settings you can set on the sidecar.
65+
The following menu includes all of the configuration settings you can set:
6666
6767
- [Tracing](#tracing)
6868
- [Metrics](#metrics)
6969
- [Logging](#logging)
7070
- [Middleware](#middleware)
7171
- [Name resolution](#name-resolution)
72+
- [Workflow](#workflow)
7273
- [Scope secret store access](#scope-secret-store-access)
7374
- [Access Control allow lists for building block APIs](#access-control-allow-lists-for-building-block-apis)
7475
- [Access Control allow lists for service invocation API](#access-control-allow-lists-for-service-invocation-api)
@@ -255,6 +256,15 @@ For more information, see:
255256
- [The name resolution component documentation]({{% ref supported-name-resolution %}}) for more examples.
256257
- [The Configuration file documentation]({{% ref configuration-schema.md %}}) to learn more about how to configure name resolution per component.
257258

259+
#### Workflow
260+
261+
The `workflow` section contains properties for configuring [Workflows]({{% ref "workflow-overview.md" %}}).
262+
263+
| Property | Type | Description |
264+
|------------------|--------|-----|
265+
| `maxConcurrentWorkflowInvocations` | int32 | Maximum number of concurrent workflow executions per Dapr sidecar. Default is infinite. |
266+
| `maxConcurrentActivityInvocations` | int32 | Maximum number of concurrent activity executions per Dapr sidecar. Default is infinite. |
267+
258268
#### Scope secret store access
259269

260270
See the [Scoping secrets]({{% ref "secret-scope.md" %}}) guide for information and examples on how to scope secrets to an application.
@@ -334,6 +344,9 @@ spec:
334344
deny:
335345
- bindings.smtp
336346
- secretstores.local.file
347+
workflow:
348+
maxConcurrentWorkflowInvocations: 100
349+
maxConcurrentActivityInvocations: 1000
337350
accessControl:
338351
defaultAction: deny
339352
trustDomain: "public"

0 commit comments

Comments
 (0)