You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: daprdocs/content/en/contributing/contributing-overview.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ See the [Dapr community repository](https://github.com/dapr/community) for more
18
18
19
19
1.**Docs**: This [repository](https://github.com/dapr/docs) contains the documentation for Dapr. You can contribute by updating existing documentation, fixing errors, or adding new content to improve user experience and clarity. Please see the specific guidelines for [docs contributions]({{< ref contributing-docs >}}).
20
20
21
-
2.**Quickstarts**: The Quickstarts [repository](https://github.com/dapr/quickstarts) provides simple, step-by-step guides to help users get started with Dapr quickly. Contributions in this repository involve creating new quickstarts, improving existing ones, or ensuring they stay up-to-date with the latest features.
21
+
2.**Quickstarts**: The Quickstarts [repository](https://github.com/dapr/quickstarts) provides simple, step-by-step guides to help users get started with Dapr quickly. [Contributions in this repository](https://github.com/dapr/quickstarts/blob/master/CONTRIBUTING.md) involve creating new quickstarts, improving existing ones, or ensuring they stay up-to-date with the latest features.
22
22
23
23
3.**Runtime**: The Dapr runtime [repository](https://github.com/dapr/dapr) houses the core runtime components. Here, you can contribute by fixing bugs, optimizing performance, implementing new features, or enhancing existing ones.
Copy file name to clipboardexpand all lines: daprdocs/content/en/contributing/docs-contrib/contributing-docs.md
+8-5
Original file line number
Diff line number
Diff line change
@@ -41,15 +41,18 @@ Style and tone conventions should be followed throughout all Dapr documentation
41
41
42
42
## Diagrams and images
43
43
44
-
Diagrams and images are invaluable visual aids for documentation pages. Diagrams are kept in a[Dapr Diagrams Deck](https://github.com/dapr/docs/tree/v1.11/daprdocs/static/presentations), which includes guidance on style and icons.
44
+
Diagrams and images are invaluable visual aids for documentation pages. Use the diagram style and icons in the[Dapr Diagrams template deck](https://github.com/dapr/docs/tree/v1.14/daprdocs/static/presentations).
45
45
46
-
As you create diagrams for your documentation:
46
+
The process for creating diagrams for your documentation:
47
47
48
-
- Save them as high-res PNG files into the [images folder](https://github.com/dapr/docs/tree/v1.11/daprdocs/static/images).
49
-
- Name your PNG files using the convention of a concept or building block so that they are grouped.
48
+
1. Download the [Dapr Diagrams template deck](https://github.com/dapr/docs/tree/v1.14/daprdocs/static/presentations) to use the icons and colors.
49
+
1. Add a new slide and create your diagram.
50
+
1. Screen capture the diagram as high-res PNG file and save in the [images folder](https://github.com/dapr/docs/tree/v1.14/daprdocs/static/images).
51
+
1. Name your PNG files using the convention of a concept or building block so that they are grouped.
50
52
- For example: `service-invocation-overview.png`.
51
53
- For more information on calling out images using shortcode, see the [Images guidance](#images) section below.
52
-
- Add the diagram to the correct section in the `Dapr-Diagrams.pptx` deck so that they can be amended and updated during routine refresh.
54
+
1. Add the diagram to the appropriate section in your documentation using the HTML `<image>` tag.
55
+
1. In your PR, comment the diagram slide (not the screen capture) so it can be reviewed and added to the diagram deck by maintainers.
Copy file name to clipboardexpand all lines: daprdocs/content/en/developing-applications/building-blocks/state-management/howto-get-save-state.md
+1-3
Original file line number
Diff line number
Diff line change
@@ -10,8 +10,6 @@ State management is one of the most common needs of any new, legacy, monolith, o
10
10
11
11
In this guide, you'll learn the basics of using the key/value state API to allow an application to save, get, and delete state.
12
12
13
-
## Example
14
-
15
13
The code example below _loosely_ describes an application that processes orders with an order processing service which has a Dapr sidecar. The order processing service uses Dapr to store state in a Redis state store.
16
14
17
15
<imgsrc="/images/building-block-state-management-example.png"width=1000alt="Diagram showing state management of example service">
@@ -554,7 +552,7 @@ namespace EventService
554
552
string DAPR_STORE_NAME = "statestore";
555
553
//Using Dapr SDK to retrieve multiple states
556
554
using var client = new DaprClientBuilder().Build();
Copy file name to clipboardexpand all lines: daprdocs/content/en/developing-applications/building-blocks/workflow/workflow-features-concepts.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -135,7 +135,7 @@ Because workflow retry policies are configured in code, the exact developer expe
135
135
| --- | --- |
136
136
|**Maximum number of attempts**| The maximum number of times to execute the activity or child workflow. |
137
137
|**First retry interval**| The amount of time to wait before the first retry. |
138
-
|**Backoff coefficient**| The amount of time to wait before each subsequent retry. |
138
+
|**Backoff coefficient**| The coefficient used to determine the rate of increase of back-off. For example a coefficient of 2 doubles the wait of each subsequent retry. |
139
139
|**Maximum retry interval**| The maximum amount of time to wait before each subsequent retry. |
140
140
|**Retry timeout**| The overall timeout for retries, regardless of any configured max number of attempts. |
Copy file name to clipboardexpand all lines: daprdocs/content/en/getting-started/quickstarts/workflow-quickstart.md
+5-1
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,10 @@ description: Get started with the Dapr Workflow building block
10
10
Dapr Workflow is currently in beta. [See known limitations for {{% dapr-latest-version cli="true" %}}]({{< ref "workflow-overview.md#limitations" >}}).
11
11
{{% /alert %}}
12
12
13
+
{{% alert title="Note" color="primary" %}}
14
+
Redis is currently used as the state store component for Workflows in the Quickstarts. However, Redis does not support transaction rollbacks and should not be used in production as an actor state store.
15
+
{{% /alert %}}
16
+
13
17
Let's take a look at the Dapr [Workflow building block]({{< ref workflow-overview.md >}}). In this Quickstart, you'll create a simple console application to demonstrate Dapr's workflow programming model and the workflow management APIs.
14
18
15
19
In this guide, you'll:
@@ -1356,4 +1360,4 @@ Join the discussion in our [discord channel](https://discord.com/channels/778680
1356
1360
- Walk through a more in-depth [.NETSDK example workflow](https://github.com/dapr/dotnet-sdk/tree/master/examples/Workflow)
1357
1361
- Learn more about [Workflow as a Dapr building block]({{< ref workflow-overview >}})
0 commit comments