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 d7bb4b5633c3cec13a3ad9e3cbfafa19f01a5abe Author: abmdocrt <[email protected]> AuthorDate: Tue Feb 6 10:09:20 2024 +0800 [Enhancement](group commit) Add retry message for group commit load while schema changing (#30391) --- be/src/runtime/group_commit_mgr.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/be/src/runtime/group_commit_mgr.cpp b/be/src/runtime/group_commit_mgr.cpp index 88a8150a60f..20872eb59d4 100644 --- a/be/src/runtime/group_commit_mgr.cpp +++ b/be/src/runtime/group_commit_mgr.cpp @@ -206,7 +206,9 @@ Status GroupCommitTable::get_first_block_load_queue( } } if (!is_schema_version_match) { - return Status::DataQualityError<false>("schema version not match"); + return Status::DataQualityError<false>( + "schema version not match, maybe a schema change is in process. Please " + "retry this load manually."); } if (!_need_plan_fragment) { _need_plan_fragment = true; @@ -222,7 +224,9 @@ Status GroupCommitTable::get_first_block_load_queue( return Status::OK(); } } else if (base_schema_version < load_block_queue->schema_version) { - return Status::DataQualityError<false>("schema version not match"); + return Status::DataQualityError<false>( + "schema version not match, maybe a schema change is in process. Please " + "retry this load manually."); } load_block_queue.reset(); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
