Try with 500MiB

This commit is contained in:
Clément Renault 2024-02-07 11:24:43 +01:00
parent 9eeb75d501
commit 053306c0e7
No known key found for this signature in database
GPG Key ID: F250A4C4E3AE5F5F

View File

@ -11,7 +11,7 @@ use crate::Result;
/// This is something reasonable given the fact
/// that there is one grenad sorter by thread.
const MAX_GRENAD_SORTER_USAGE: usize = 200 * 1024 * 1024; // 200 MiB
const MAX_GRENAD_SORTER_USAGE: usize = 500 * 1024 * 1024; // 500 MiB
pub type CursorClonableMmap = io::Cursor<ClonableMmap>;