From 98bcb0e26d208f72d518a7fe7dc9922ba5132c90 Mon Sep 17 00:00:00 2001 From: tstojecki Date: Tue, 27 Jul 2021 09:43:18 +0200 Subject: [PATCH 1/3] Adding a note on default redis pubsub redelivery https://github.com/dapr/dapr/issues/3481 --- .../building-blocks/pubsub/howto-publish-subscribe.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/daprdocs/content/en/developing-applications/building-blocks/pubsub/howto-publish-subscribe.md b/daprdocs/content/en/developing-applications/building-blocks/pubsub/howto-publish-subscribe.md index 30acc6604..2f7ada785 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/pubsub/howto-publish-subscribe.md +++ b/daprdocs/content/en/developing-applications/building-blocks/pubsub/howto-publish-subscribe.md @@ -416,6 +416,8 @@ app.post('/dsstatus', (req, res) => { {{< /tabs >}} +Some pubsub components (e.g.: Redis) will redeliver a message if a response is not sent back within a specified time window. For redis, the default is 60 sec and can be configured through the processingTimeout setting in component's meta or set to 0 to disable this behavior. + ## (Optional) Step 5: Publishing a topic with code {{< tabs Node PHP>}} From 732a8201601c562c30ae15528d3932622cebb9bd Mon Sep 17 00:00:00 2001 From: tstojecki Date: Tue, 17 Aug 2021 10:48:58 +0200 Subject: [PATCH 2/3] Updating to a generic message and linking component docs Suggestion from @AaronCrawfis Co-authored-by: Aaron Crawfis --- .../building-blocks/pubsub/howto-publish-subscribe.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/daprdocs/content/en/developing-applications/building-blocks/pubsub/howto-publish-subscribe.md b/daprdocs/content/en/developing-applications/building-blocks/pubsub/howto-publish-subscribe.md index 2f7ada785..1fc6f57db 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/pubsub/howto-publish-subscribe.md +++ b/daprdocs/content/en/developing-applications/building-blocks/pubsub/howto-publish-subscribe.md @@ -416,7 +416,9 @@ app.post('/dsstatus', (req, res) => { {{< /tabs >}} -Some pubsub components (e.g.: Redis) will redeliver a message if a response is not sent back within a specified time window. For redis, the default is 60 sec and can be configured through the processingTimeout setting in component's meta or set to 0 to disable this behavior. +{{% alert title="👷‍♂️ Under construction 🚧" color="primary" %}} +Some pubsub components (e.g. Redis) will redeliver a message if a response is not sent back within a specified time window. Make sure to configure metadata such as `processingTimeout` to customize this behavior. For more information refer to the respective [component references]({{< ref supported-pubsub >}}). +{{% /alert %}} ## (Optional) Step 5: Publishing a topic with code From 8ac7a8e5992adb27788b6377928be95edfe7be48 Mon Sep 17 00:00:00 2001 From: Aaron Crawfis Date: Thu, 19 Aug 2021 13:58:34 -0700 Subject: [PATCH 3/3] Update daprdocs/content/en/developing-applications/building-blocks/pubsub/howto-publish-subscribe.md Co-authored-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com> --- .../building-blocks/pubsub/howto-publish-subscribe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/developing-applications/building-blocks/pubsub/howto-publish-subscribe.md b/daprdocs/content/en/developing-applications/building-blocks/pubsub/howto-publish-subscribe.md index 1fc6f57db..7cdd7f9b6 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/pubsub/howto-publish-subscribe.md +++ b/daprdocs/content/en/developing-applications/building-blocks/pubsub/howto-publish-subscribe.md @@ -416,7 +416,7 @@ app.post('/dsstatus', (req, res) => { {{< /tabs >}} -{{% alert title="👷‍♂️ Under construction 🚧" color="primary" %}} +{{% alert title="Note on message redelivery" color="primary" %}} Some pubsub components (e.g. Redis) will redeliver a message if a response is not sent back within a specified time window. Make sure to configure metadata such as `processingTimeout` to customize this behavior. For more information refer to the respective [component references]({{< ref supported-pubsub >}}). {{% /alert %}}