forked from dapr/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request dapr#4028 from ASHIQUEMD/wfbackend-docs
Add workflow backend documentation
- Loading branch information
Showing
4 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
.../content/en/reference/components-reference/supported-workflow-backend/_index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
type: docs | ||
title: "Workflow backend component specs" | ||
linkTitle: "Workflow backend" | ||
weight: 9000 | ||
description: The supported workflow backend that orchestrate workflow and save workflow state | ||
no_list: true | ||
--- | ||
|
||
{{< partial "components/description.html" >}} |
24 changes: 24 additions & 0 deletions
24
...rence/components-reference/supported-workflow-backend/actor-workflow-backend.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
type: docs | ||
title: "Actor workflow backend" | ||
linkTitle: "Actor workflow backend" | ||
description: Detailed information on the Actor workflow backend component | ||
--- | ||
|
||
## Component format | ||
|
||
The Actor workflow backend is the default backend in Dapr. If no workflow backend is explicitly defined, the Actor backend will be used automatically. | ||
|
||
You don't need to define any components to use the Actor workflow backend. It's ready to use out-of-the-box. | ||
|
||
However, if you wish to explicitly define the Actor workflow backend as a component, you can do so, as shown in the example below. | ||
|
||
```yaml | ||
apiVersion: dapr.io/v1alpha1 | ||
kind: Component | ||
metadata: | ||
name: actorbackend | ||
spec: | ||
type: workflowbackend.actor | ||
version: v1 | ||
``` |