From e8a77817350d5e44c84869fef7c07b8ddbbff860 Mon Sep 17 00:00:00 2001 From: Fabian Martinez <46371672+famarting@users.noreply.github.com> Date: Thu, 24 Oct 2024 09:58:44 +0200 Subject: [PATCH 1/9] workflows: fix description of backoff coefficient Signed-off-by: Fabian Martinez <46371672+famarting@users.noreply.github.com> --- .../building-blocks/workflow/workflow-features-concepts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/developing-applications/building-blocks/workflow/workflow-features-concepts.md b/daprdocs/content/en/developing-applications/building-blocks/workflow/workflow-features-concepts.md index efdac157c..7cd66cb70 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/workflow/workflow-features-concepts.md +++ b/daprdocs/content/en/developing-applications/building-blocks/workflow/workflow-features-concepts.md @@ -135,7 +135,7 @@ Because workflow retry policies are configured in code, the exact developer expe | --- | --- | | **Maximum number of attempts** | The maximum number of times to execute the activity or child workflow. | | **First retry interval** | The amount of time to wait before the first retry. | -| **Backoff coefficient** | The amount of time to wait before each subsequent retry. | +| **Backoff coefficient** | The coefficient used to determine rate of increase of back-off, i.e a coefficient of 2 will double the wait of each subsequent retry. | | **Maximum retry interval** | The maximum amount of time to wait before each subsequent retry. | | **Retry timeout** | The overall timeout for retries, regardless of any configured max number of attempts. | From 81a95dd1c8f2893a811d9464fa35118be9c9817a Mon Sep 17 00:00:00 2001 From: Fabian Martinez <46371672+famarting@users.noreply.github.com> Date: Fri, 25 Oct 2024 13:32:26 +0200 Subject: [PATCH 2/9] Update daprdocs/content/en/developing-applications/building-blocks/workflow/workflow-features-concepts.md Co-authored-by: Mark Fussell Signed-off-by: Fabian Martinez <46371672+famarting@users.noreply.github.com> --- .../building-blocks/workflow/workflow-features-concepts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/developing-applications/building-blocks/workflow/workflow-features-concepts.md b/daprdocs/content/en/developing-applications/building-blocks/workflow/workflow-features-concepts.md index 7cd66cb70..b0392fa78 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/workflow/workflow-features-concepts.md +++ b/daprdocs/content/en/developing-applications/building-blocks/workflow/workflow-features-concepts.md @@ -135,7 +135,7 @@ Because workflow retry policies are configured in code, the exact developer expe | --- | --- | | **Maximum number of attempts** | The maximum number of times to execute the activity or child workflow. | | **First retry interval** | The amount of time to wait before the first retry. | -| **Backoff coefficient** | The coefficient used to determine rate of increase of back-off, i.e a coefficient of 2 will double the wait of each subsequent retry. | +| **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. | | **Maximum retry interval** | The maximum amount of time to wait before each subsequent retry. | | **Retry timeout** | The overall timeout for retries, regardless of any configured max number of attempts. | From bb90d07895e524b4704ec9343609b399d8b6d2d0 Mon Sep 17 00:00:00 2001 From: Stephen Clarke Date: Mon, 28 Oct 2024 10:50:09 +0000 Subject: [PATCH 3/9] 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 4/9] 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. From 64d972a47b94f00b442ed50a1510da4d80e5680c Mon Sep 17 00:00:00 2001 From: Hannah Hunter Date: Thu, 31 Oct 2024 10:33:43 -0400 Subject: [PATCH 5/9] go submodule Signed-off-by: Hannah Hunter --- sdkdocs/go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdkdocs/go b/sdkdocs/go index 7c03c7ce5..dd9a2d5a3 160000 --- a/sdkdocs/go +++ b/sdkdocs/go @@ -1 +1 @@ -Subproject commit 7c03c7ce58d100a559ac1881bc0c80d6dedc5ab9 +Subproject commit dd9a2d5a3c4481b8a6bda032df8f44f5eaedb370 From fc77b633f644991a7bf5b40b194b4ccfa8a2bc6d Mon Sep 17 00:00:00 2001 From: Hannah Hunter Date: Thu, 31 Oct 2024 10:34:32 -0400 Subject: [PATCH 6/9] dotnet submodule Signed-off-by: Hannah Hunter --- sdkdocs/dotnet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdkdocs/dotnet b/sdkdocs/dotnet index b8e276728..03038fa51 160000 --- a/sdkdocs/dotnet +++ b/sdkdocs/dotnet @@ -1 +1 @@ -Subproject commit b8e276728935c66b0a335b5aa2ca4102c560dd3d +Subproject commit 03038fa519670b583eabcef1417eacd55c3e44c8 From 494a546d9054dff047fee9867a9bfd93ef96d8d1 Mon Sep 17 00:00:00 2001 From: Hannah Hunter Date: Thu, 31 Oct 2024 10:35:06 -0400 Subject: [PATCH 7/9] js submodule Signed-off-by: Hannah Hunter --- sdkdocs/js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdkdocs/js b/sdkdocs/js index 7350742b6..76866c878 160000 --- a/sdkdocs/js +++ b/sdkdocs/js @@ -1 +1 @@ -Subproject commit 7350742b6869cc166633d1f4d17d76fbdbb12921 +Subproject commit 76866c878a6e79bb889c83f3930172ddb20f1624 From 54aacd995e023ac832afc421cf579a5a583f1055 Mon Sep 17 00:00:00 2001 From: Hannah Hunter Date: Thu, 31 Oct 2024 10:35:55 -0400 Subject: [PATCH 8/9] java submodules Signed-off-by: Hannah Hunter --- sdkdocs/java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdkdocs/java b/sdkdocs/java index a98327e7d..0b7a051b7 160000 --- a/sdkdocs/java +++ b/sdkdocs/java @@ -1 +1 @@ -Subproject commit a98327e7d9a81611b0d7e91e59ea23ad48271948 +Subproject commit 0b7a051b79c7a394e9bd4f57bd40778fb5f29897 From 7963bd0ffacfd7f6dcf8cda4950775d180c9efc1 Mon Sep 17 00:00:00 2001 From: Hannah Hunter Date: Thu, 31 Oct 2024 10:37:04 -0400 Subject: [PATCH 9/9] python submodule Signed-off-by: Hannah Hunter --- sdkdocs/python | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdkdocs/python b/sdkdocs/python index 64a4f2f66..6e90e84b1 160000 --- a/sdkdocs/python +++ b/sdkdocs/python @@ -1 +1 @@ -Subproject commit 64a4f2f6658e9023e8ea080eefdb019645cae802 +Subproject commit 6e90e84b166ac7ea603b78894e9e1b92dc456014