Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion be/src/base/status.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ std::string Status::code_as_string() const {
case TStatusCode::JIT_COMPILE_ERROR:
return "JIT compile error";
case TStatusCode::CAPACITY_LIMIT_EXCEED:
return "Capaticy limit exceeded";
return "Capacity limit exceeded";
case TStatusCode::SHUTDOWN:
return "Shut down in progress";
case TStatusCode::BIG_QUERY_CPU_SECOND_LIMIT_EXCEEDED:
Expand Down
7 changes: 4 additions & 3 deletions be/src/exec/runtime/pipeline_driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -457,10 +457,11 @@ StatusOr<DriverState> PipelineDriver::process(RuntimeState* runtime_state, int w

if (UNLIKELY(config::pipeline_enable_large_column_checker)) {
if (capacity_exceed || maybe_chunk.value()->has_capacity_limit_reached()) {
LOG(WARNING) << "Large column detected after " << i << "-th operator "
<< curr_op->get_name() << " in " << to_readable_string();
return Status::CapacityLimitExceed(
fmt::format("Large column detected at "
"after {}-th operator {} in {}",
i, curr_op->get_name(), to_readable_string()));
"Large column detected, please reduce rows per batch or the size of "
"string/array values");
}
}

Expand Down
Loading