Skip to content

Commit d4961b3

Browse files
Update Redis pub/sub component specs to match code (#4049)
* update to match code implementation Signed-off-by: Hannah Hunter <[email protected]> * update to include both seconds and milliseconds Signed-off-by: Hannah Hunter <[email protected]> * Update daprdocs/content/en/reference/components-reference/supported-pubsub/setup-redis-pubsub.md Signed-off-by: Mark Fussell <[email protected]> * Update daprdocs/content/en/reference/components-reference/supported-pubsub/setup-redis-pubsub.md Signed-off-by: Mark Fussell <[email protected]> --------- Signed-off-by: Hannah Hunter <[email protected]> Signed-off-by: Mark Fussell <[email protected]> Co-authored-by: Mark Fussell <[email protected]>
1 parent 8e137d6 commit d4961b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

daprdocs/content/en/reference/components-reference/supported-pubsub/setup-redis-pubsub.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ The above example uses secrets as plain strings. It is recommended to use a secr
4343
| redisUsername | N | Username for Redis host. Defaults to empty. Make sure your redis server version is 6 or above, and have created acl rule correctly. | `""`, `"default"`
4444
| consumerID | N | The consumer group ID | `"myGroup"`
4545
| enableTLS | N | If the Redis instance supports TLS with public certificates, can be configured to be enabled or disabled. Defaults to `"false"` | `"true"`, `"false"`
46-
| redeliverInterval | N | The interval between checking for pending messages to redelivery. Defaults to `"60s"`. `"0"` disables redelivery. | `"30s"`
47-
| processingTimeout | N | The amount time a message must be pending before attempting to redeliver it. Defaults to `"15s"`. `"0"` disables redelivery. | `"30s"`
46+
| redeliverInterval | N | The interval between checking for pending messages to redeliver. Can use either be Go duration string (for example "ms", "s", "m") or milliseconds number. Defaults to `"60s"`. `"0"` disables redelivery. | `"30s"`, `"5000"`
47+
| processingTimeout | N | The amount time that a message must be pending before attempting to redeliver it. Can use either be Go duration string ( for example "ms", "s", "m") or milliseconds number. Defaults to `"15s"`. `"0"` disables redelivery. | `"60s"`, `"600000"`
4848
| queueDepth | N | The size of the message queue for processing. Defaults to `"100"`. | `"1000"`
4949
| concurrency | N | The number of concurrent workers that are processing messages. Defaults to `"10"`. | `"15"`
5050
| redisType | N | The type of redis. There are two valid values, one is `"node"` for single node mode, the other is `"cluster"` for redis cluster mode. Defaults to `"node"`. | `"cluster"`

0 commit comments

Comments
 (0)