diff --git a/be/src/runtime/group_commit_mgr.cpp b/be/src/runtime/group_commit_mgr.cpp index 88a8150a60..20872eb59d 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("schema version not match"); + return Status::DataQualityError( + "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("schema version not match"); + return Status::DataQualityError( + "schema version not match, maybe a schema change is in process. Please " + "retry this load manually."); } load_block_queue.reset(); }