chore: reduce SeriesScan sender timeout (#6983)

Signed-off-by: evenyag <realevenyag@gmail.com>
This commit is contained in:
Yingwen
2025-09-17 15:02:47 +08:00
committed by Weny Xu
parent 4fc7f12360
commit 97c0b1f5c1

View File

@@ -48,7 +48,7 @@ use crate::read::stream::{ConvertBatchStream, ScanBatch, ScanBatchStream};
use crate::read::{Batch, ScannerMetrics};
/// Timeout to send a batch to a sender.
const SEND_TIMEOUT: Duration = Duration::from_millis(10);
const SEND_TIMEOUT: Duration = Duration::from_micros(100);
/// List of receivers.
type ReceiverList = Vec<Option<Receiver<Result<SeriesBatch>>>>;