Skip to content

Commit

Permalink
Set fetch payload size to 256 KiB
Browse files Browse the repository at this point in the history
  • Loading branch information
guilload committed Mar 22, 2024
1 parent 621939c commit 0950b03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quickwit/quickwit-ingest/src/ingest_v2/fetch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ impl fmt::Debug for FetchStreamTask {
}

impl FetchStreamTask {
pub const DEFAULT_BATCH_NUM_BYTES: usize = 1024 * 1024; // 1 MiB
pub const DEFAULT_BATCH_NUM_BYTES: usize = 256 * 1024; // 1 MiB

pub fn spawn(
open_fetch_stream_request: OpenFetchStreamRequest,
Expand Down

0 comments on commit 0950b03

Please sign in to comment.