From 865206cf3b84d5a1374cc652b47836fe6ff42efe Mon Sep 17 00:00:00 2001 From: Joyce Fee Date: Tue, 26 May 2026 11:51:04 -0400 Subject: [PATCH 1/4] fix(DOC-1959): remove raft_election_timeout_ms section from cluster-properties partial Follow-up to #1611. The PR added an `exclude_from_docs` override for `raft_election_timeout_ms` in `docs-data/property-overrides.json`, which correctly removed the property from the source v26.1.6 attachment JSON. However, the rendered `cluster-properties.adoc` partial was never regenerated, so the property still appeared on the published cluster properties page. Delete the orphaned section directly. Future auto-docs regeneration runs will preserve the deletion because the source JSON no longer contains the property. Co-Authored-By: Claude Opus 4.7 --- .../properties/cluster-properties.adoc | 47 ------------------- 1 file changed, 47 deletions(-) diff --git a/modules/reference/partials/properties/cluster-properties.adoc b/modules/reference/partials/properties/cluster-properties.adoc index 998af7ce72..30ba027010 100644 --- a/modules/reference/partials/properties/cluster-properties.adoc +++ b/modules/reference/partials/properties/cluster-properties.adoc @@ -14936,53 +14936,6 @@ endif::[] |=== -=== raft_election_timeout_ms - -Election timeout expressed in milliseconds. - -[cols="1s,2a"] -|=== -| Property | Value - -| Type -| `integer` - - - -| Range -| [`-17592186044416`, `17592186044415`] - -| Default -| -ifdef::env-cloud[] -Available in the Redpanda Cloud Console -endif::[] -ifndef::env-cloud[] -`1500` (1500 milliseconds) -endif::[] - -| Nullable -| No - -| Unit -| Milliseconds - -| Requires restart -| No - -ifndef::env-cloud[] -| Restored on xref:manage:whole-cluster-restore.adoc[Whole Cluster Restore] -| Yes -endif::[] - -ifndef::env-cloud[] -| Visibility -| Tunable -endif::[] - -|=== - - === raft_enable_longest_log_detection Enables an additional step in leader election where a candidate is allowed to wait for all the replies from the broker it requested votes from. This may introduce a small delay when recovering from failure, but it prevents truncation if any of the replicas have more data than the majority. From b5ab98296237fcde272b54d05de08247a33705f6 Mon Sep 17 00:00:00 2001 From: Joyce Fee Date: Tue, 26 May 2026 11:54:44 -0400 Subject: [PATCH 2/4] chore: trigger Netlify rebuild Co-Authored-By: Claude Opus 4.7 From fc1fcc48c99e8e183dd7665d30ec5773722502b5 Mon Sep 17 00:00:00 2001 From: Joyce Fee Date: Wed, 27 May 2026 12:46:18 -0400 Subject: [PATCH 3/4] fix(DOC-1959): add #raft_election_timeout_ms redirect anchor Restore the deep-link anchor for users with bookmarks or external links to cluster-properties#raft_election_timeout_ms. The anchor lands on a short note explaining that this is the internal C++ variable name and directing readers to the user-facing election_timeout_ms property. Placed in the parent page (not the auto-generated partial) so it survives future partial regeneration runs. Co-Authored-By: Claude Opus 4.7 --- modules/reference/pages/properties/cluster-properties.adoc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/reference/pages/properties/cluster-properties.adoc b/modules/reference/pages/properties/cluster-properties.adoc index 053173d11d..75aa1aaa82 100644 --- a/modules/reference/pages/properties/cluster-properties.adoc +++ b/modules/reference/pages/properties/cluster-properties.adoc @@ -11,3 +11,8 @@ NOTE: Some cluster properties require that you restart the cluster for any updat == Cluster configuration include::reference:partial$properties/cluster-properties.adoc[tags=!deprecated;!exclude-from-docs] + +[#raft_election_timeout_ms] +== raft_election_timeout_ms + +`raft_election_timeout_ms` is the internal C++ variable name for this setting and is not a user-facing cluster property. The user-facing property is xref:#election_timeout_ms[`election_timeout_ms`]. From 67f68bc49d6a7d627754fba07d4146c441b2b3eb Mon Sep 17 00:00:00 2001 From: Joyce Fee Date: Wed, 27 May 2026 12:55:13 -0400 Subject: [PATCH 4/4] Revert "fix(DOC-1959): add #raft_election_timeout_ms redirect anchor" This reverts commit fc1fcc48c99e8e183dd7665d30ec5773722502b5. --- modules/reference/pages/properties/cluster-properties.adoc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/modules/reference/pages/properties/cluster-properties.adoc b/modules/reference/pages/properties/cluster-properties.adoc index 75aa1aaa82..053173d11d 100644 --- a/modules/reference/pages/properties/cluster-properties.adoc +++ b/modules/reference/pages/properties/cluster-properties.adoc @@ -11,8 +11,3 @@ NOTE: Some cluster properties require that you restart the cluster for any updat == Cluster configuration include::reference:partial$properties/cluster-properties.adoc[tags=!deprecated;!exclude-from-docs] - -[#raft_election_timeout_ms] -== raft_election_timeout_ms - -`raft_election_timeout_ms` is the internal C++ variable name for this setting and is not a user-facing cluster property. The user-facing property is xref:#election_timeout_ms[`election_timeout_ms`].