Skip to content

Commit

Permalink
Increase default warmup memory to limit its effect
Browse files Browse the repository at this point in the history
  • Loading branch information
rdettai committed Dec 12, 2024
1 parent 2b434cd commit afc5e46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion quickwit/quickwit-config/src/node_config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ impl Default for SearcherConfig {
split_cache: None,
request_timeout_secs: Self::default_request_timeout_secs(),
storage_timeout_policy: None,
warmup_memory_budget: ByteSize::gb(10),
warmup_memory_budget: ByteSize::gb(100),
warmup_single_split_initial_allocation: ByteSize::gb(1),
}
}
Expand Down
2 changes: 1 addition & 1 deletion quickwit/quickwit-config/src/node_config/serialize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ mod tests {
timeout_millis: 2_000,
max_num_retries: 2
}),
warmup_memory_budget: ByteSize::gb(10),
warmup_memory_budget: ByteSize::gb(100),
warmup_single_split_initial_allocation: ByteSize::gb(1),
}
);
Expand Down

0 comments on commit afc5e46

Please sign in to comment.