You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/manage/partials/audit-logging.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -361,7 +361,7 @@ With audit logging, the pattern of message generation may be very different from
361
361
362
362
A typical scenario with audit logging is to route the messages to an analytics platform like Splunk. If your retention period is too long, you may find that you are storing excessive amounts of replicated messages in both Redpanda and in your analytics suite. Identifying the right balance of retention and replication settings minimizes this duplication while retaining your data in a system that provides actionable intelligence.
363
363
364
-
Assess the retention needs for your audit logs. You may not need to keep the logs for the default seven days. This is controlled by setting xref:reference:topic-properties.adoc#retentionms[`retention.ms`] for the `_redpanda.audit_log` topic or by setting xref:reference:cluster-properties.adoc#delete_retention_ms[`delete_retention_ms`] at the cluster level.
364
+
Assess the retention needs for your audit logs. You may not need to keep the logs for the default seven days. This is controlled by setting xref:reference:topic-properties.adoc#retentionms[`retention.ms`] for the `_redpanda.audit_log` topic or by setting xref:reference:cluster-properties.adoc#log_retention_ms[`log_retention_ms`] at the cluster level.
Copy file name to clipboardExpand all lines: modules/manage/partials/tiered-storage.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1012,7 +1012,7 @@ At topic creation with Tiered Storage enabled:
1012
1012
* If `retention.ms` or `retention.bytes` is set, Redpanda initializes the `retention.local.target.*` properties.
1013
1013
* If `retention.local.target.ms` or `retention.local.target.bytes` is set, Redpanda initializes the `min(retention.bytes, retention.local.target.bytes)` and `max(retention.ms, retention.local.target.ms)` properties.
1014
1014
* If properties are not specified:
1015
-
** Starting in version 22.3, new topics use the default retention values of one day for local storage (`retention_local_target_ms_default`) and seven days for all storage, including object storage (`delete_retention_ms`).
1015
+
** Starting in version 22.3, new topics use the default retention values of one day for local storage (config_ref:retention_local_target_ms_default,true,cluster-properties[]) and seven days for all storage, including object storage (config_ref:log_retention_ms,true,cluster-properties[]).
1016
1016
** Upgraded topics retain their historical defaults of infinite retention.
1017
1017
1018
1018
After topic configuration, if Tiered Storage was disabled and must be enabled, or was enabled and must be disabled, Redpanda uses the local retention properties set for the topic. It is strongly recommended that you do not re-enable Tiered Storage after previously enabling and disabling it. Re-enabling Tiered Storage can result in inconsistent data and data gaps in Tiered Storage for a topic.
@@ -2593,19 +2599,19 @@ Path to a file containing a certificate chain to trust for the REST Iceberg cata
2593
2599
2594
2600
---
2595
2601
2596
-
// tag::iceberg_rest_catalog_prefix[]
2602
+
// tag::iceberg_rest_catalog_warehouse[]
2597
2603
=== iceberg_rest_catalog_warehouse
2598
2604
2599
2605
Warehouse to use for the Iceberg REST catalog. Redpanda queries the catalog to retrieve warehouse-specific configurations and automatically configures settings like the appropriate prefix. The prefix is appended to the catalog path (for example, `/v1/\{prefix}/namespaces`).
2600
2606
2601
-
*Alias:* `iceberg_rest_catalog_prefix`
2602
-
2603
2607
*Requires restart:* Yes
2604
2608
2605
2609
*Visibility:* `user`
2606
2610
2607
2611
*Type:* string
2608
2612
2613
+
*Aliases:* `iceberg_rest_catalog_prefix`
2614
+
2609
2615
ifndef::env-cloud[]
2610
2616
*Default:* `null`
2611
2617
endif::[]
@@ -2616,7 +2622,7 @@ endif::[]
2616
2622
2617
2623
---
2618
2624
2619
-
// end::iceberg_rest_catalog_prefix[]
2625
+
// end::iceberg_rest_catalog_warehouse[]
2620
2626
2621
2627
=== iceberg_target_backlog_size
2622
2628
@@ -3850,6 +3856,8 @@ The amount of time to keep a log file before deleting it (in milliseconds). If s
Setting properties to non-number values (such as setting string values with `-`) can be problematic for some terminals due to how POSIX flags are parsed. For example, the following command may not work from some terminals:
60
60
61
61
```
62
-
rpk cluster config set delete_retention_ms -1
62
+
rpk cluster config set log_retention_ms -1
63
63
```
64
64
65
65
Workaround: Use `--` to disable parsing for all subsequent characters. For example:
0 commit comments