diff --git a/en/docs/reference/connectors/kafka-connector/kafka-inbound-endpoint-config.md b/en/docs/reference/connectors/kafka-connector/kafka-inbound-endpoint-config.md
index 14137615a..909a079eb 100644
--- a/en/docs/reference/connectors/kafka-connector/kafka-inbound-endpoint-config.md
+++ b/en/docs/reference/connectors/kafka-connector/kafka-inbound-endpoint-config.md
@@ -67,6 +67,11 @@ The following parameters are required when configuring Kafka Inbound Endpoint.
Offsets are committed automatically with a frequency controlled by the config. |
5000 |
+
+ failure.retry.count |
+ The offset set to the same record until the failure retry count exceeds. |
+ -1 |
+
session.timeout.ms |
The timeout used to detect client failures when using Kafka’s group management facility. |
@@ -388,3 +393,6 @@ The following parameters are required when configuring Kafka Inbound Endpoint.
False |
+
+!!! Note
+ The `` property should be set in the fault sequence to poll the same record if in a failure case. The internal logic does not commit if the above property is set and the offset is set to the current record. The `failure.retry.count` parameter controls the polling of the same record during failure scenarios. If the retry count is exceeded, the offset is set to the next record, discarding the current one. The default value is `-1`, meaning the same record will be polled infinitely in failure cases. Both the `` and `failure.retry.count` parameters are effective only when `enable.auto.commit` is set to `false`.