Skip to content

Commit

Permalink
ensure output
Browse files Browse the repository at this point in the history
  • Loading branch information
duanmeng committed Dec 5, 2023
1 parent 975ca3a commit c816591
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion velox/exec/GroupingSet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,11 @@ void GroupingSet::ensureOutputFits() {
return;
}
}
spill(RowContainerIterator{});
LOG(WARNING) << "Failed to reserve "
<< succinctBytes(outputBufferSizeToReserve)
<< " for memory pool " << pool_.name()
<< ", usage: " << succinctBytes(pool_.currentBytes())
<< ", reservation: " << succinctBytes(pool_.reservedBytes());
}

RowTypePtr GroupingSet::makeSpillType() const {
Expand Down

0 comments on commit c816591

Please sign in to comment.