mirror of https://github.com/dapr/docs.git
Update daprdocs/content/en/developing-applications/building-blocks/workflow/workflow-architecture.md
Co-authored-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> Signed-off-by: MD Ashique <noorani.ashique5@gmail.com>
This commit is contained in:
parent
96b1b8c7f8
commit
4cdb9be49d
|
@ -176,7 +176,9 @@ Workflows don't control the specifics of how load is distributed across the clus
|
|||
|
||||
## Workflow backend
|
||||
|
||||
The workflow backend is responsible for orchestrating and preserving the state of workflows. At any given time, only one backend can be supported. The workflow backend can be configured as a component, similar to any other component in Dapr. Users are required to specify the type of workflow backend and provide the configuration specific to that backend.
|
||||
The workflow backend is responsible for orchestrating and preserving the state of workflows. At any given time, only one backend can be supported. You can configure the workflow backend as a component, similar to any other component in Dapr. Configuration requires:
|
||||
1. Specifying the type of workflow backend.
|
||||
1. Providing the configuration specific to that backend.
|
||||
|
||||
For instance, the following sample demonstrates how to define a SQLite backend component. Please note that as of now, SQLite backend is not supported. Dapr workflow currently supports only the actor backend by default, and users are not required to define an actor backend component to use it.
|
||||
|
||||
|
|
Loading…
Reference in New Issue