Skip to content

Commit bcde8cd

Browse files
committed
Fix typo asyncInvoke => asyncInvocation
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent 707d0d0 commit bcde8cd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

_posts/2021-08-02-openfaas-kafka-aiven.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,9 +267,9 @@ We've now set up a managed Kafka broker using Aiven and configured OpenFaaS Pro
267267

268268
* How does this scale? Well you can set up the Kafka connector to listen to multiple topics by changing the `overrides.yaml` file such as: `topics: "signup,churn,quote-requested,quote-completed"` and each function can also subscribe to multiple topics.
269269

270-
* If you have functions which are long-running, you can have them run in the background using the `asyncInvoke` setting for the Kafka connector, with this in place, all messages are dispatched to OpenFaaS' built-in NATS queue for processing when there is capacity available.
270+
* If you have functions which are long-running, you can have them run in the background using the `asyncInvocation` setting for the Kafka connector, with this in place, all messages are dispatched to OpenFaaS' built-in NATS queue for processing when there is capacity available.
271271

272-
* What about retries? If you enable the `asyncInvoke` behaviour of the connector, and are an OpenFaaS Pro customer, then messages can be retried with an exponential back-off.
272+
* What about retries? If you enable the `asyncInvocation` behaviour of the connector, and are an OpenFaaS Pro customer, then messages can be retried with an exponential back-off.
273273

274274
* What if I use [Confluent Cloud](https://www.confluent.co.uk/confluent-cloud/) or self-hosted Apache Kafka? You can also use SALS authentication if you're a [Confluent Cloud](https://www.confluent.co.uk/confluent-cloud/) customer, or bypass authentication if you run Kafka on a private network and are self-hosting the service.
275275

_posts/2023-09-18-confluent-kafka.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ So if the `faas-request` topic has 3 partitions, then you should have 3 replicas
343343

344344
If the connector crashes for some reason, or the Pod is scheduled to a different node, then Kubernetes will automatically restart it, and it'll pick up from the last message it processed.
345345

346-
For retries, set the `asyncInvoke` option to `true`, so that consumed messages get put into the NATS JetStream queue and retried according to the policy you've defined. There are more advanced options covered in the docs and Helm chart, but what we've covered today should cover 80% of the use-cases for triggering functions from Kafka.
346+
For retries, set the `asyncInvocation` option to `true`, so that consumed messages get put into the NATS JetStream queue and retried according to the policy you've defined. There are more advanced options covered in the docs and Helm chart, but what we've covered today should cover 80% of the use-cases for triggering functions from Kafka.
347347

348348
If you have any further questions, please feel [free to get in touch with us](https://www.openfaas.com/pricing).
349349

0 commit comments

Comments
 (0)