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 GitHub
parent ff2da4903e
commit 14550429e9

View File

@@ -52,7 +52,7 @@ use crate::sst::parquet::flat_format::primary_key_column_index;
use crate::sst::parquet::format::PrimaryKeyArray;
/// 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>>>>;