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

kxiao pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-2.0 by this push:
     new af7a28511eb [fix](index compaction)Remove return error in merged rows 
check #38732 (#38757)
af7a28511eb is described below

commit af7a28511eb69679c97a2a46cae02a6c137714b2
Author: qiye <[email protected]>
AuthorDate: Fri Aug 2 17:47:00 2024 +0800

    [fix](index compaction)Remove return error in merged rows check #38732 
(#38757)
---
 be/src/olap/compaction.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/be/src/olap/compaction.cpp b/be/src/olap/compaction.cpp
index 2619d4d40a3..126cc961a0b 100644
--- a/be/src/olap/compaction.cpp
+++ b/be/src/olap/compaction.cpp
@@ -431,8 +431,8 @@ Status Compaction::do_compaction_impl(int64_t permits) {
                         stats.merged_rows, missed_rows_size, 
_tablet->tablet_id(),
                         _tablet->table_id());
                 DCHECK(false) << err_msg;
+                // Log here just for debugging, do not return error.
                 LOG(WARNING) << err_msg;
-                return Status::InternalError(err_msg);
             }
         }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to