Skip to content

Commit 2ba2505

Browse files
authored
chore: don't use warn for backpressure throttle event (#3660)
1 parent be688a9 commit 2ba2505

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rust/lance-io/src/scheduler.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ impl IoQueueState {
221221
&& seconds_elapsed < BACKPRESSURE_DEBOUNCE)
222222
|| since_last_warn > BACKPRESSURE_DEBOUNCE
223223
{
224-
tracing::event!(tracing::Level::WARN, "Backpressure throttle exceeded");
224+
tracing::event!(tracing::Level::DEBUG, "Backpressure throttle exceeded");
225225
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);

0 commit comments

Comments
 (0)