Skip to content

Commit 20340a9

Browse files
Update howto-configure-kafka-endpoint.md
1 parent f0ae088 commit 20340a9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/iot-operations/connect-to-cloud/howto-configure-kafka-endpoint.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -821,24 +821,24 @@ kafkaSettings: {
821821

822822
---
823823

824-
### Kafka acknowledgements
824+
### Kafka acknowledgments
825825

826-
Kafka acknowledgements (acks) are used to control the durability and consistency of messages sent to Kafka topics. When a producer sends a message to a Kafka topic, it can request different levels of acknowledgements from the Kafka broker to ensure that the message is successfully written to the topic and replicated across the Kafka cluster.
826+
Kafka acknowledgments (acks) are used to control the durability and consistency of messages sent to Kafka topics. When a producer sends a message to a Kafka topic, it can request different levels of acknowledgments from the Kafka broker to ensure that the message is successfully written to the topic and replicated across the Kafka cluster.
827827

828828
This setting takes effect only if the endpoint is used as a destination (that is, the dataflow is a producer).
829829

830830
| Value | Description |
831831
| ----- | ----------- |
832-
| `None` | The dataflow doesn't wait for any acknowledgements from the Kafka broker. This is the fastest but least durable option. |
832+
| `None` | The dataflow doesn't wait for any acknowledgments from the Kafka broker. This is the fastest but least durable option. |
833833
| `All` | The dataflow waits for the message to be written to the leader partition and all follower partitions. This is the slowest but most durable option. This is also the default option|
834834
| `One` | The dataflow waits for the message to be written to the leader partition and at least one follower partition. |
835-
| `Zero` | The dataflow waits for the message to be written to the leader partition but doesn't wait for any acknowledgements from the followers. This is faster than `One` but less durable. |
835+
| `Zero` | The dataflow waits for the message to be written to the leader partition but doesn't wait for any acknowledgments from the followers. This is faster than `One` but less durable. |
836836

837837
<!-- TODO: double check for accuracy -->
838838

839839
For example, if you set the Kafka acknowledgement to `All`, the dataflow waits for the message to be written to the leader partition and all follower partitions before sending the next message.
840840

841-
To configure the Kafka acknowledgements:
841+
To configure the Kafka acknowledgments:
842842

843843
# [Portal](#tab/portal)
844844

0 commit comments

Comments
 (0)