Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions antora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ asciidoc:
# Fallback versions
# We try to fetch the latest versions from GitHub at build time
# --
full-version: 26.1.10
latest-redpanda-tag: 'v26.1.10'
full-version: 26.1.11
latest-redpanda-tag: 'v26.1.11'
latest-console-tag: 'v3.3.1'
latest-release-commit: 'ebee215fdb2b8004735c6f800e532564cdcc05e1'
latest-operator-version: 'v2.3.8-24.3.6'
Expand Down
3 changes: 3 additions & 0 deletions docs-data/property-overrides.json
Original file line number Diff line number Diff line change
Expand Up @@ -702,6 +702,9 @@
"description": "Maximum capacity of rate limit accumulation in controller topic operations limit.",
"config_scope": "cluster"
},
"controller_log_learner_recovery_rate_enabled": {
"version": "v26.1.11"
},
"core_balancing_continuous": {
"related_topics": [],
"config_scope": "cluster"
Expand Down
43 changes: 43 additions & 0 deletions docs-data/redpanda-property-changes-v26.1.10-to-v26.1.11.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"comparison": {
"oldVersion": "v26.1.10",
"newVersion": "v26.1.11",
"timestamp": "2026-06-26T00:05:37.272Z"
},
"summary": {
"newProperties": 1,
"changedDefaults": 0,
"changedDescriptions": 0,
"changedTypes": 0,
"deprecatedProperties": 0,
"removedDeprecatedProperties": 0,
"removedProperties": 0,
"emptyDescriptions": 2
},
"details": {
"newProperties": [
{
"name": "controller_log_learner_recovery_rate_enabled",
"type": "boolean",
"default": false,
"description": "Whether the controller raft group (raft0) honors `raft_learner_recovery_rate`. When `false` (default) the controller log replicates to new learners without throttling. When `true`, controller-log recovery is subject to the same per-node recovery bucket as user partitions."
}
],
"changedDefaults": [],
"changedDescriptions": [],
"changedTypes": [],
"deprecatedProperties": [],
"removedDeprecatedProperties": [],
"removedProperties": [],
"emptyDescriptions": [
{
"name": "redpanda.remote.allowgaps",
"type": "boolean"
},
{
"name": "redpanda.virtual.cluster.id",
"type": "string"
}
]
}
}
55 changes: 0 additions & 55 deletions docs-data/redpanda-property-changes-v26.1.9-to-v26.1.10.json

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@
"cloud_supported": false,
"config_scope": "broker",
"default": "/usr/share/redpanda/proxy-api-doc",
"defined_in": "src/v/pandaproxy/rest/configuration.cc",
"defined_in": "src/v/pandaproxy/schema_registry/configuration.cc",
"description": "Path to the API specifications directory. This directory contains API documentation for both the HTTP Proxy API and Schema Registry API.",
"is_deprecated": false,
"is_enterprise": false,
Expand Down Expand Up @@ -4775,6 +4775,24 @@
"type": "integer",
"visibility": "tunable"
},
"controller_log_learner_recovery_rate_enabled": {
"c_type": "bool",
"cloud_byoc_only": false,
"cloud_editable": false,
"cloud_readonly": false,
"cloud_supported": false,
"config_scope": "cluster",
"default": false,
"defined_in": "src/v/config/configuration.cc",
"description": "Whether the controller raft group (raft0) honors `raft_learner_recovery_rate`. When `false` (default) the controller log replicates to new learners without throttling. When `true`, controller-log recovery is subject to the same per-node recovery bucket as user partitions.",
"is_deprecated": false,
"is_enterprise": false,
"name": "controller_log_learner_recovery_rate_enabled",
"needs_restart": true,
"nullable": false,
"type": "boolean",
"visibility": "tunable"
},
"controller_snapshot_max_age_sec": {
"c_type": "std::chrono::seconds",
"cloud_byoc_only": false,
Expand Down
41 changes: 41 additions & 0 deletions modules/reference/partials/properties/cluster-properties.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3454,6 +3454,47 @@ endif::[]
|===


=== controller_log_learner_recovery_rate_enabled

Whether the controller raft group (raft0) honors `raft_learner_recovery_rate`. When `false` (default) the controller log replicates to new learners without throttling. When `true`, controller-log recovery is subject to the same per-node recovery bucket as user partitions.

[cols="1s,2a"]
|===
| Property | Value

| Type
| `boolean`



| Default
|
ifdef::env-cloud[]
Available in the Redpanda Cloud Console
endif::[]
ifndef::env-cloud[]
`false`
endif::[]

| Nullable
| No

| Requires restart
| Yes

ifndef::env-cloud[]
| Restored on xref:manage:whole-cluster-restore.adoc[Whole Cluster Restore]
| Yes
endif::[]

ifndef::env-cloud[]
| Visibility
| Tunable
endif::[]

|===


=== controller_snapshot_max_age_sec

Maximum amount of time before Redpanda attempts to create a controller snapshot after a new controller command appears.
Expand Down
Loading