From bb90d07895e524b4704ec9343609b399d8b6d2d0 Mon Sep 17 00:00:00 2001 From: Stephen Clarke Date: Mon, 28 Oct 2024 10:50:09 +0000 Subject: [PATCH 1/2] Update workflow-quickstart.md regarding using Redis in production Signed-off-by: Stephen Clarke --- .../en/getting-started/quickstarts/workflow-quickstart.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/daprdocs/content/en/getting-started/quickstarts/workflow-quickstart.md b/daprdocs/content/en/getting-started/quickstarts/workflow-quickstart.md index da1ec1590..f626dcb0a 100644 --- a/daprdocs/content/en/getting-started/quickstarts/workflow-quickstart.md +++ b/daprdocs/content/en/getting-started/quickstarts/workflow-quickstart.md @@ -10,6 +10,10 @@ description: Get started with the Dapr Workflow building block Dapr Workflow is currently in beta. [See known limitations for {{% dapr-latest-version cli="true" %}}]({{< ref "workflow-overview.md#limitations" >}}). {{% /alert %}} +{{% alert title="Note" color="primary" %}} +Redis is currently used as the state store component for Workflows in out Quickstarts. However, Redis does not support transaction rollbacks and should not be used in production as an actor state store. +{{% /alert %}} + 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. In this guide, you'll: @@ -1356,4 +1360,4 @@ Join the discussion in our [discord channel](https://discord.com/channels/778680 - Walk through a more in-depth [.NET SDK example workflow](https://github.com/dapr/dotnet-sdk/tree/master/examples/Workflow) - Learn more about [Workflow as a Dapr building block]({{< ref workflow-overview >}}) -{{< button text="Explore Dapr tutorials >>" page="getting-started/tutorials/_index.md" >}} \ No newline at end of file +{{< button text="Explore Dapr tutorials >>" page="getting-started/tutorials/_index.md" >}} From 4dadec67e9f6ba9e9bf62c86c10c3368de98d280 Mon Sep 17 00:00:00 2001 From: Stephen Clarke Date: Tue, 29 Oct 2024 09:33:39 +0000 Subject: [PATCH 2/2] Update daprdocs/content/en/getting-started/quickstarts/workflow-quickstart.md Co-authored-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> Signed-off-by: Stephen Clarke --- .../en/getting-started/quickstarts/workflow-quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/getting-started/quickstarts/workflow-quickstart.md b/daprdocs/content/en/getting-started/quickstarts/workflow-quickstart.md index f626dcb0a..0c2c92b36 100644 --- a/daprdocs/content/en/getting-started/quickstarts/workflow-quickstart.md +++ b/daprdocs/content/en/getting-started/quickstarts/workflow-quickstart.md @@ -11,7 +11,7 @@ Dapr Workflow is currently in beta. [See known limitations for {{% dapr-latest-v {{% /alert %}} {{% alert title="Note" color="primary" %}} -Redis is currently used as the state store component for Workflows in out Quickstarts. However, Redis does not support transaction rollbacks and should not be used in production as an actor state store. +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. {{% /alert %}} 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.