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: chart/openfaas/README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -581,6 +581,7 @@ See [values.yaml](./values.yaml) for detailed configuration.
581
581
| `jetstreamQueueWorker.consumer.pullMaxMessages` | PullMaxMessages limits the number of messages to be buffered per consumer. Leave empty to use optimized default for the selected queue mode | `` |
| `jetstreamQueueWorker.logs.format` | Set the log format, supports `console` or `json` | `console` |
584
+
| `jetstreamQueueWorker.adaptiveConcurrency` | Enable adaptive concurrency limiting for functions based on 429 response. This setting only takes effect when `jetstreamQueueWorker.mode` is set to `function`. | `true` |
584
585
| `nats.channel` | The name of the NATS Streaming channel or NATS JetStream stream to use for asynchronous function invocations | `faas-request` |
585
586
| `nats.external.clusterName` | The name of the externally-managed NATS Streaming server | `""` |
586
587
| `nats.external.enabled` | Whether to use an externally-managed NATS Streaming server | `false` |
Copy file name to clipboardExpand all lines: chart/queue-worker/README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ nats:
38
38
name: slow-fns
39
39
consumer:
40
40
durableName: slow-fns-workers
41
-
upstreamTimeout: 15m
41
+
upstreamTimeout: 15m
42
42
```
43
43
44
44
Then pass `-f ./values-slow-fns.yaml` to the `helm upgrade --install` command instead of the `--set` flags.
@@ -101,6 +101,7 @@ helm upgrade --install \
101
101
| `queueName` | Name of the queue if you want it to be different to the stream name | `""` - when empty, defaults to `nats.stream.name` |
102
102
| `mode` | Queue operation mode: `static`(OpenFaaS Standard) or `function` (requires OpenFaaS for Enterprises) | `static` |
103
103
| `maxInflight` | Control the concurrent invocations | `1` |
104
+
| `adaptiveConcurrency` | Enable adaptive concurrency limiting for functions based on 429 response. This setting only takes effect when `mode` is set to `function`. | `true` |
104
105
| `queuePartitions` | Number of queue partitions | `1` |
105
106
| `partition` | Queue partition number this queue should subscribe to | `0` |
106
107
| `consumer.inactiveThreshold` | If a function is inactive (has no invocations) for longer than this threshold its consumer will be removed to save resources | `30s` |
0 commit comments