This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 5213f941dd4df62b9e55597405fa913ae00501af Author: AlexYue <[email protected]> AuthorDate: Tue Jan 23 20:52:50 2024 +0800 [improvement](cooldown) print the cooldown version when follow cooldown version (#30239) --- be/src/olap/tablet.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/be/src/olap/tablet.cpp b/be/src/olap/tablet.cpp index 720cd5b2350..f4bd7a5a710 100644 --- a/be/src/olap/tablet.cpp +++ b/be/src/olap/tablet.cpp @@ -2340,12 +2340,14 @@ Status Tablet::_follow_cooldowned_data() { } } else if (!rs->is_local()) { return Status::InternalError<false>( - "cooldowned version larger than that to follow"); + "cooldowned version larger than that to follow with cooldown version {}", + cooldowned_version); } } if (!version_aligned) { - return Status::InternalError<false>("cooldowned version is not aligned"); + return Status::InternalError<false>("cooldowned version is not aligned with version {}", + cooldowned_version); } std::sort(overlap_rowsets.begin(), overlap_rowsets.end(), Rowset::comparator); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
