Skip to content

Commit a7c5216

Browse files
authored
chore: downgrade backpressure warning to a debug log message (#3392)
Until we're more optimized this warning is not terribly useful or actionable by users.
1 parent 7aa7d94 commit a7c5216

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/lance-io/src/scheduler.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ impl IoQueueState {
222222
|| since_last_warn > BACKPRESSURE_DEBOUNCE
223223
{
224224
tracing::event!(tracing::Level::WARN, "Backpressure throttle exceeded");
225-
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");
225+
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");
226226
self.last_warn
227227
.store(seconds_elapsed.max(1), Ordering::Release);
228228
}

0 commit comments

Comments
 (0)