Skip to content

Commit 77e5a2a

Browse files
auto-docs: Update property docs for tag v25.3.4 (#1530)
Co-authored-by: Paulo Borges <paulohtb6@gmail.com>
1 parent fecb172 commit 77e5a2a

File tree

7 files changed

+14038
-11
lines changed

7 files changed

+14038
-11
lines changed

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.3
21-
latest-redpanda-tag: 'v25.3.3'
20+
full-version: 25.3.4
21+
latest-redpanda-tag: 'v25.3.4'
2222
latest-console-tag: 'v3.3.1'
2323
latest-release-commit: '6aa5af28b020b66e5caa966094882b7260497a53'
2424
latest-operator-version: 'v2.3.8-24.3.6'
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
{
2+
"comparison": {
3+
"oldVersion": "v25.3.1",
4+
"newVersion": "v25.3.4",
5+
"timestamp": "2025-12-26T05:38:23.707Z"
6+
},
7+
"summary": {
8+
"newProperties": 7,
9+
"changedDefaults": 0,
10+
"changedDescriptions": 0,
11+
"changedTypes": 0,
12+
"deprecatedProperties": 1,
13+
"removedProperties": 0,
14+
"emptyDescriptions": 3
15+
},
16+
"details": {
17+
"newProperties": [
18+
{
19+
"name": "cloud_topics_epoch_service_epoch_increment_interval",
20+
"type": "integer",
21+
"default": 600000,
22+
"description": "The interval at which the cluster epoch is incremented."
23+
},
24+
{
25+
"name": "cloud_topics_epoch_service_local_epoch_cache_duration",
26+
"type": "integer",
27+
"default": 60000,
28+
"description": "The local cache duration of a cluster wide epoch."
29+
},
30+
{
31+
"name": "cloud_topics_short_term_gc_backoff_interval",
32+
"type": "integer",
33+
"default": 60000,
34+
"description": "The interval between invocations of the L0 garbage collection work loop when no progress is being made or errors are occurring."
35+
},
36+
{
37+
"name": "cloud_topics_short_term_gc_interval",
38+
"type": "integer",
39+
"default": 10000,
40+
"description": "The interval between invocations of the L0 garbage collection work loop when progress is being made."
41+
},
42+
{
43+
"name": "cloud_topics_short_term_gc_minimum_object_age",
44+
"type": "integer",
45+
"default": 43200000,
46+
"description": "The minimum age of an L0 object before it becomes eligible for garbage collection."
47+
},
48+
{
49+
"name": "fetch_max_read_concurrency",
50+
"type": "integer",
51+
"default": 1,
52+
"description": "The maximum number of concurrent partition reads per fetch request on each shard. Setting this higher than the default can lead to partition starvation and unneeded memory usage."
53+
},
54+
{
55+
"name": "log_compaction_tx_batch_removal_enabled",
56+
"type": "boolean",
57+
"default": false,
58+
"description": "Enables removal of transactional control batches during compaction. These batches are removed according to a topic's configured delete.retention.ms, and only if the topic's cleanup.policy allows compaction."
59+
}
60+
],
61+
"changedDefaults": [],
62+
"changedDescriptions": [],
63+
"changedTypes": [],
64+
"deprecatedProperties": [
65+
{
66+
"name": "log_compaction_disable_tx_batch_removal",
67+
"reason": "Property marked as deprecated"
68+
}
69+
],
70+
"removedProperties": [],
71+
"emptyDescriptions": [
72+
{
73+
"name": "redpanda.cloud_topic.enabled",
74+
"type": "string"
75+
},
76+
{
77+
"name": "redpanda.remote.allowgaps",
78+
"type": "boolean"
79+
},
80+
{
81+
"name": "redpanda.virtual.cluster.id",
82+
"type": "string"
83+
}
84+
]
85+
}
86+
}

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ Redpanda 25.3 introduces the following configuration properties:
133133
* xref:reference:properties/cluster-properties.adoc#fetch_max_read_concurrency[`fetch_max_read_concurrency`]: Maximum concurrent partition reads per fetch request
134134
* 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
135135
* xref:reference:properties/cluster-properties.adoc#kafka_produce_batch_validation[`kafka_produce_batch_validation`]: Validation level for produced batches
136-
* xref:reference:properties/cluster-properties.adoc#log_compaction_disable_tx_batch_removal[`log_compaction_disable_tx_batch_removal`]: Disable transactional batch removal during compaction
136+
* xref:reference:properties/cluster-properties.adoc#log_compaction_tx_batch_removal_enabled[`log_compaction_tx_batch_removal_enabled`]: Enable transactional batch removal during compaction
137137
* xref:reference:properties/cluster-properties.adoc#sasl_mechanisms_overrides[`sasl_mechanisms_overrides`]: SASL authentication mechanisms per listener
138138

139139
=== Changes to default values
@@ -149,6 +149,7 @@ The following configuration properties have new default values in v25.3:
149149
The following configuration properties have been deprecated in v25.3 and will be removed in a future release:
150150

151151
* `kafka_memory_batch_size_estimate_for_fetch`: No replacement. Remove from configuration.
152+
* `log_compaction_disable_tx_batch_removal`: Use xref:reference:properties/cluster-properties.adoc#log_compaction_tx_batch_removal_enabled[`log_compaction_tx_batch_removal_enabled`] instead. Note the inverted logic: the new property enables the behavior when set to `true`.
152153
* `log_message_timestamp_alert_after_ms`: Use xref:reference:properties/cluster-properties.adoc#log_message_timestamp_after_max_ms[`log_message_timestamp_after_max_ms`] instead.
153154
* `log_message_timestamp_alert_before_ms`: Use xref:reference:properties/cluster-properties.adoc#log_message_timestamp_before_max_ms[`log_message_timestamp_before_max_ms`] instead.
154155
* `raft_recovery_default_read_size`: No replacement. Remove from configuration.

0 commit comments

Comments
 (0)