Skip to content

Commit

Permalink
chore: downgrade backpressure warning to a debug log message (#3392)
Browse files Browse the repository at this point in the history
Until we're more optimized this warning is not terribly useful or
actionable by users.
  • Loading branch information
westonpace authored Jan 28, 2025
1 parent 7aa7d94 commit a7c5216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/lance-io/src/scheduler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ impl IoQueueState {
|| since_last_warn > BACKPRESSURE_DEBOUNCE
{
tracing::event!(tracing::Level::WARN, "Backpressure throttle exceeded");
log::warn!("Backpressure throttle is full, I/O will pause until buffer is drained. Max I/O bandwidth will not be achieved because CPU is falling behind");
log::debug!("Backpressure throttle is full, I/O will pause until buffer is drained. Max I/O bandwidth will not be achieved because CPU is falling behind");
self.last_warn
.store(seconds_elapsed.max(1), Ordering::Release);
}
Expand Down

0 comments on commit a7c5216

Please sign in to comment.