This is an automated email from the ASF dual-hosted git repository.
gavinchou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new b9331b5e7c8 [chore](recycler) Change
tablet_rowset_stale_sweep_time_sec=600 to reduce possibility failed to find
rowset (#40076)
b9331b5e7c8 is described below
commit b9331b5e7c86979eda68c5abb39cac6cd610460a
Author: Gavin Chou <[email protected]>
AuthorDate: Tue Sep 3 23:16:41 2024 +0800
[chore](recycler) Change tablet_rowset_stale_sweep_time_sec=600 to reduce
possibility failed to find rowset (#40076)
When there is a large query, the stale rowsets may be recycled before
the query referencing them, which may cause -230, or import of MoW table
failed to find rowset.
---
be/src/common/config.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/be/src/common/config.cpp b/be/src/common/config.cpp
index 2b3b2ffb09e..67a12fc02f1 100644
--- a/be/src/common/config.cpp
+++ b/be/src/common/config.cpp
@@ -296,7 +296,7 @@ DEFINE_mInt32(default_num_rows_per_column_file_block,
"1024");
// pending data policy
DEFINE_mInt32(pending_data_expire_time_sec, "1800");
// inc_rowset snapshot rs sweep time interval
-DEFINE_mInt32(tablet_rowset_stale_sweep_time_sec, "300");
+DEFINE_mInt32(tablet_rowset_stale_sweep_time_sec, "600");
// tablet stale rowset sweep by threshold size
DEFINE_Bool(tablet_rowset_stale_sweep_by_size, "false");
DEFINE_mInt32(tablet_rowset_stale_sweep_threshold_size, "100");
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]