This is an automated email from the ASF dual-hosted git repository.

achennaka pushed a commit to branch branch-1.18.x
in repository https://gitbox.apache.org/repos/asf/kudu.git


The following commit(s) were added to refs/heads/branch-1.18.x by this push:
     new 3b263e440 [docs] Document tablet_history_max_age_sec behavior
3b263e440 is described below

commit 3b263e440f445ea52f50ad44812fa7a3d752c00d
Author: Abhishek Chennaka <[email protected]>
AuthorDate: Wed Nov 19 14:35:37 2025 -0800

    [docs] Document tablet_history_max_age_sec behavior
    
    This updates the known issues section with the behavior of the flag
    --tablet_history_max_age_sec and suggestions to improve cluster
    performance.
    
    Change-Id: Ic86db57eab6da21c0fe2e8721f120318bdccba79
    Reviewed-on: http://gerrit.cloudera.org:8080/23694
    Tested-by: Kudu Jenkins
    Reviewed-by: Ashwani Raina <[email protected]>
    Reviewed-by: Alexey Serbin <[email protected]>
    (cherry picked from commit 513862e737d5a68c5683eadd1efd28dacc2dbd74)
    Reviewed-on: http://gerrit.cloudera.org:8080/23715
    Reviewed-by: Gabriella Lotz <[email protected]>
---
 docs/known_issues.adoc | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/docs/known_issues.adoc b/docs/known_issues.adoc
index 2bdcf0786..d58ac51ad 100644
--- a/docs/known_issues.adoc
+++ b/docs/known_issues.adoc
@@ -217,3 +217,14 @@ to communicate only the most important known issues.
   If using SSSD in secure Kudu cluster deployments, make sure SSSD packages are
   of version 1.16 or newer
   (see link:https://issues.apache.org/jira/browse/KUDU-3217[KUDU-3217]).
+
+* The default value of --tablet_history_max_age_sec was increased from 15 
minutes
+  to 1 week in Kudu 1.10. While maintaining a longer history window can be 
useful
+  for features such as incremental Kudu backups and time-travel queries, it 
also
+  comes with significant resource costs such as higher memory usage, increased 
CPU load,
+  higher rate of filesystem read/write operations and more open file 
descriptors due to
+  storing all table data changes in delta files. Scanning rows that are 
updated frequently
+  imposes additional overhead, since all the accumulated deltas must be 
processed, negatively
+  affecting performance. Decreasing the value of this flag can improve 
performance, and if
+  the workload does not rely on long history retention, it is safe to reduce 
the value
+  (see http://issues.apache.org/jira/browse/KUDU-3583[KUDU-3583]).

Reply via email to