diff --git a/be/src/olap/rowset_version_mgr.cpp b/be/src/olap/rowset_version_mgr.cpp index 731287dcb0049b..d222ccfbb02b60 100644 --- a/be/src/olap/rowset_version_mgr.cpp +++ b/be/src/olap/rowset_version_mgr.cpp @@ -73,7 +73,7 @@ static bvar::LatencyRecorder g_remote_fetch_tablet_rowsets_latency("remote_fetch "version already has been merged. version_range={}, max_version={}, " "tablet_id={}", version_range.to_string(), _tablet_meta->max_version().second, tablet_id()); - return ResultError(Status::Error( + return ResultError(Status::Error( "missed versions is empty, version_range={}, max_version={}, tablet_id={}", version_range.to_string(), _tablet_meta->max_version().second, tablet_id())); } @@ -92,7 +92,10 @@ static bvar::LatencyRecorder g_remote_fetch_tablet_rowsets_latency("remote_fetch return version_path; } if ((tablet_id != -1 && tablet_id == _tablet_meta->tablet_id()) || tablet_id == -2) { - return ResultError(Status::Error("version already merged")); + return ResultError(Status::Error( + "versions are already compacted, version_range={}, max_version={}, " + "tablet_id={}", + version_range.to_string(), _tablet_meta->max_version().second, tablet_id)); } }); return version_path; @@ -150,8 +153,8 @@ static bvar::LatencyRecorder g_remote_fetch_tablet_rowsets_latency("remote_fetch } auto ret = _remote_capture_rowsets(version_range); if (!ret) { - auto st = Status::Error( - "version already merged, meet error during remote capturing rowsets, " + auto st = Status::Error( + "versions are already compacted, meet error during remote capturing rowsets, " "error={}, version_range={}", ret.error().to_string(), version_range.to_string()); return ResultError(std::move(st));