Skip to content

Commit 7c7507c

Browse files
auto-docs: Update property docs for tag v25.3.8 (#1587)
Co-authored-by: Paulo Borges <paulohtb6@gmail.com>
1 parent b3af7e0 commit 7c7507c

6 files changed

Lines changed: 91 additions & 17 deletions

File tree

antora.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ asciidoc:
1717
# Fallback versions
1818
# We try to fetch the latest versions from GitHub at build time
1919
# --
20-
full-version: 25.3.7
21-
latest-redpanda-tag: 'v25.3.7'
20+
full-version: 25.3.8
21+
latest-redpanda-tag: 'v25.3.8'
2222
latest-console-tag: 'v3.3.1'
2323
latest-release-commit: '6aa5af28b020b66e5caa966094882b7260497a53'
2424
latest-operator-version: 'v2.3.8-24.3.6'

docs-data/property-overrides.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -774,7 +774,7 @@
774774
"related_topics": [
775775
"xref:manage:schema-reg/schema-id-validation.adoc[Server-Side Schema ID Validation]"
776776
],
777-
"description": "Controls whether Redpanda validates schema IDs in records and which topic properties are enforced.\n\nValues:\n\n* `none`: Schema validation is disabled (no schema ID checks are done). Associated topic properties cannot be modified.\n* `redpanda`: Schema validation is enabled. Only Redpanda topic properties are accepted.\n* `compat`: Schema validation is enabled. Both Redpanda and compatible topic properties are accepted.",
777+
"description": "Controls whether Redpanda validates schema IDs in records and which topic properties are enforced.\n\nValues:\n\n* `none`: Schema validation is disabled (no schema ID checks are done). Associated topic properties cannot be modified.\n* `redpanda`: Schema validation is enabled. Only Redpanda topic properties are accepted.\n* `compat`: Schema validation is enabled. Both Redpanda and compatible topic properties are accepted.\n\nNOTE: Enabling this property will trigger decompression of message batches for topics on which validation is configured, which may lead to a modest increase in CPU load. Redpanda recommends monitoring CPU utilization after topics are configured.",
778778
"config_scope": "cluster"
779779
},
780780
"enable_shadow_linking": {
@@ -829,7 +829,7 @@
829829
"config_scope": "cluster"
830830
},
831831
"iceberg_default_catalog_namespace": {
832-
"description": "The default namespace (database name) for Iceberg tables. All tables created by Redpanda will be placed in this namespace within the Iceberg catalog. Supports nested namespaces as an array of strings.\n\nIMPORTANT: This value must be configured before enabling Iceberg and must not be changed afterward. Changing it will cause Redpanda to lose track of existing tables.",
832+
"description": "The default Iceberg catalog namespace where Redpanda creates tables. Supports nested namespaces as an array of strings.\n\nIMPORTANT: This value must be configured before enabling Iceberg and must not be changed afterward. Changing it will cause Redpanda to lose track of existing tables.",
833833
"version": "v25.3.5"
834834
},
835835
"iceberg_default_partition_spec": {
@@ -1132,6 +1132,7 @@
11321132
"config_scope": "cluster"
11331133
},
11341134
"kafka_fetch_request_timeout_ms": {
1135+
"description": "Target duration for a single fetch request. The broker tries to complete each fetch within this duration, even if fewer bytes are available than requested.",
11351136
"version": "v25.3.7"
11361137
},
11371138
"kafka_max_message_size_upper_limit_bytes": {
@@ -1215,6 +1216,10 @@
12151216
"description": "Prevents log compaction from removing transaction metadata. Only set this to `true` if you experience stability issues related to transaction cleanup during compaction.",
12161217
"config_scope": "cluster"
12171218
},
1219+
"log_compaction_max_priority_wait_ms": {
1220+
"description": "Maximum time a priority partition (for example, `__consumer_offsets`) can wait for compaction before preempting regular compaction.",
1221+
"version": "v25.3.8"
1222+
},
12181223
"log_compaction_merge_max_ranges": {
12191224
"description": "The maximum range of segments that can be processed in a single round of adjacent segment compaction. If `null` (the default value), no maximum is imposed on the number of ranges that can be processed at once. A value below 1 effectively disables adjacent merge compaction.",
12201225
"config_scope": "cluster"

docs-data/redpanda-property-changes-v25.3.5-to-v25.3.7.json renamed to docs-data/redpanda-property-changes-v25.3.7-to-v25.3.8.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"comparison": {
3-
"oldVersion": "v25.3.5",
4-
"newVersion": "v25.3.7",
5-
"timestamp": "2026-02-07T17:24:45.753Z"
3+
"oldVersion": "v25.3.7",
4+
"newVersion": "v25.3.8",
5+
"timestamp": "2026-02-25T19:46:45.991Z"
66
},
77
"summary": {
88
"newProperties": 1,
@@ -16,10 +16,10 @@
1616
"details": {
1717
"newProperties": [
1818
{
19-
"name": "kafka_fetch_request_timeout_ms",
19+
"name": "log_compaction_max_priority_wait_ms",
2020
"type": "integer",
21-
"default": 5000,
22-
"description": "Broker-side target for the duration of a single fetch request. The broker will try to complete fetches within the specified duration, even if it means returning less bytes in the fetch than are available."
21+
"default": 3600000,
22+
"description": "Maximum time a priority partition (for example, __consumer_offsets) can wait for compaction before preempting regular compaction."
2323
}
2424
],
2525
"changedDefaults": [],

modules/get-started/pages/release-notes/redpanda.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ Redpanda 25.3 introduces the following configuration properties:
134134
* xref:reference:properties/cluster-properties.adoc#fetch_max_read_concurrency[`fetch_max_read_concurrency`]: Maximum concurrent partition reads per fetch request
135135
* xref:reference:properties/cluster-properties.adoc#kafka_max_message_size_upper_limit_bytes[`kafka_max_message_size_upper_limit_bytes`]: Maximum allowed `max.message.size` topic property value
136136
* xref:reference:properties/cluster-properties.adoc#kafka_produce_batch_validation[`kafka_produce_batch_validation`]: Validation level for produced batches
137+
* xref:reference:properties/cluster-properties.adoc#log_compaction_max_priority_wait_ms[`log_compaction_max_priority_wait_ms`]: Maximum time a priority partition can wait for compaction before preempting regular compaction
137138
* xref:reference:properties/cluster-properties.adoc#log_compaction_tx_batch_removal_enabled[`log_compaction_tx_batch_removal_enabled`]: Enable transactional batch removal during compaction
138139
* xref:reference:properties/cluster-properties.adoc#sasl_mechanisms_overrides[`sasl_mechanisms_overrides`]: SASL authentication mechanisms per listener
139140

modules/reference/attachments/redpanda-properties-v25.3.7.json renamed to modules/reference/attachments/redpanda-properties-v25.3.8.json

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5583,7 +5583,7 @@
55835583
"config_scope": "cluster",
55845584
"default": "none",
55855585
"defined_in": "src/v/config/configuration.cc",
5586-
"description": "Controls whether Redpanda validates schema IDs in records and which topic properties are enforced.\n\nValues:\n\n* `none`: Schema validation is disabled (no schema ID checks are done). Associated topic properties cannot be modified.\n* `redpanda`: Schema validation is enabled. Only Redpanda topic properties are accepted.\n* `compat`: Schema validation is enabled. Both Redpanda and compatible topic properties are accepted.",
5586+
"description": "Controls whether Redpanda validates schema IDs in records and which topic properties are enforced.\n\nValues:\n\n* `none`: Schema validation is disabled (no schema ID checks are done). Associated topic properties cannot be modified.\n* `redpanda`: Schema validation is enabled. Only Redpanda topic properties are accepted.\n* `compat`: Schema validation is enabled. Both Redpanda and compatible topic properties are accepted.\n\nNOTE: Enabling this property will trigger decompression of message batches for topics on which validation is configured, which may lead to a modest increase in CPU load. Redpanda recommends monitoring CPU utilization after topics are configured.",
55875587
"enterprise_constructor": "restricted_only",
55885588
"enterprise_restricted_value": [
55895589
"compat",
@@ -6333,7 +6333,7 @@
63336333
"redpanda"
63346334
],
63356335
"defined_in": "src/v/config/configuration.cc",
6336-
"description": "The default Iceberg catalog namespace where Redpanda creates tables. Supports nested namespaces as an array of strings. \n\nIMPORTANT: This value must be configured before enabling Iceberg and must not be changed afterward. Changing it will cause Redpanda to lose track of existing tables.",
6336+
"description": "The default Iceberg catalog namespace where Redpanda creates tables. Supports nested namespaces as an array of strings.\n\nIMPORTANT: This value must be configured before enabling Iceberg and must not be changed afterward. Changing it will cause Redpanda to lose track of existing tables.",
63376337
"is_deprecated": false,
63386338
"is_enterprise": false,
63396339
"items": {
@@ -7518,7 +7518,7 @@
75187518
"default": 5000,
75197519
"default_human_readable": "5 seconds",
75207520
"defined_in": "src/v/config/configuration.cc",
7521-
"description": "Broker-side target for the duration of a single fetch request. The broker will try to complete fetches within the specified duration, even if it means returning less bytes in the fetch than are available.",
7521+
"description": "Target duration for a single fetch request. The broker tries to complete each fetch within this duration, even if fewer bytes are available than requested.",
75227522
"is_deprecated": false,
75237523
"is_enterprise": false,
75247524
"maximum": 17592186044415,
@@ -7527,8 +7527,8 @@
75277527
"needs_restart": false,
75287528
"nullable": false,
75297529
"type": "integer",
7530-
"visibility": "tunable",
7531-
"version": "v25.3.7"
7530+
"version": "v25.3.7",
7531+
"visibility": "tunable"
75327532
},
75337533
"kafka_group_recovery_timeout_ms": {
75347534
"c_type": "std::chrono::milliseconds",
@@ -8581,6 +8581,27 @@
85818581
"type": "integer",
85828582
"visibility": "user"
85838583
},
8584+
"log_compaction_max_priority_wait_ms": {
8585+
"c_type": "std::chrono::milliseconds",
8586+
"cloud_byoc_only": false,
8587+
"cloud_editable": false,
8588+
"cloud_readonly": false,
8589+
"cloud_supported": false,
8590+
"config_scope": "cluster",
8591+
"default": 3600000,
8592+
"default_human_readable": "1 hour",
8593+
"defined_in": "src/v/config/configuration.cc",
8594+
"description": "Maximum time a priority partition (for example, `__consumer_offsets`) can wait for compaction before preempting regular compaction.",
8595+
"is_deprecated": false,
8596+
"is_enterprise": false,
8597+
"maximum": 17592186044415,
8598+
"minimum": -17592186044416,
8599+
"name": "log_compaction_max_priority_wait_ms",
8600+
"needs_restart": false,
8601+
"nullable": false,
8602+
"type": "integer",
8603+
"visibility": "tunable"
8604+
},
85848605
"log_compaction_merge_max_ranges": {
85858606
"c_type": "uint32_t",
85868607
"cloud_byoc_only": false,

modules/reference/partials/properties/cluster-properties.adoc

Lines changed: 49 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5016,14 +5016,14 @@ endif::[]
50165016

50175017
Controls whether Redpanda validates schema IDs in records and which topic properties are enforced.
50185018

5019-
NOTE: Enabling this property will trigger decompression of message batches for topics on which validation is configured, which may lead to a modest increase in CPU load. Redpanda recommends monitoring CPU utilization after topics are configured.
5020-
50215019
Values:
50225020

50235021
* `none`: Schema validation is disabled (no schema ID checks are done). Associated topic properties cannot be modified.
50245022
* `redpanda`: Schema validation is enabled. Only Redpanda topic properties are accepted.
50255023
* `compat`: Schema validation is enabled. Both Redpanda and compatible topic properties are accepted.
50265024

5025+
NOTE: Enabling this property will trigger decompression of message batches for topics on which validation is configured, which may lead to a modest increase in CPU load. Redpanda recommends monitoring CPU utilization after topics are configured.
5026+
50275027
ifndef::env-cloud[]
50285028
.Enterprise license required
50295029
[NOTE]
@@ -11382,6 +11382,53 @@ endif::[]
1138211382
|===
1138311383

1138411384

11385+
=== log_compaction_max_priority_wait_ms
11386+
11387+
Maximum time a priority partition (for example, `__consumer_offsets`) can wait for compaction before preempting regular compaction.
11388+
11389+
[cols="1s,2a"]
11390+
|===
11391+
| Property | Value
11392+
11393+
| Type
11394+
| `integer`
11395+
11396+
11397+
11398+
| Range
11399+
| [`-17592186044416`, `17592186044415`]
11400+
11401+
| Default
11402+
|
11403+
ifdef::env-cloud[]
11404+
Available in the Redpanda Cloud Console
11405+
endif::[]
11406+
ifndef::env-cloud[]
11407+
`3600000` (1 hour)
11408+
endif::[]
11409+
11410+
| Nullable
11411+
| No
11412+
11413+
| Unit
11414+
| Milliseconds
11415+
11416+
| Requires restart
11417+
| No
11418+
11419+
ifndef::env-cloud[]
11420+
| Restored on xref:manage:whole-cluster-restore.adoc[Whole Cluster Restore]
11421+
| Yes
11422+
endif::[]
11423+
11424+
ifndef::env-cloud[]
11425+
| Visibility
11426+
| Tunable
11427+
endif::[]
11428+
11429+
|===
11430+
11431+
1138511432
=== log_compaction_merge_max_ranges
1138611433

1138711434
The maximum range of segments that can be processed in a single round of adjacent segment compaction. If `null` (the default value), no maximum is imposed on the number of ranges that can be processed at once. A value below 1 effectively disables adjacent merge compaction.

0 commit comments

Comments
 (0)