@@ -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
260270See 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