From 053306c0e7b8b26b72489d5a442c56846c14b83d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Renault?= Date: Wed, 7 Feb 2024 11:24:43 +0100 Subject: [PATCH] Try with 500MiB --- milli/src/update/index_documents/helpers/grenad_helpers.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/milli/src/update/index_documents/helpers/grenad_helpers.rs b/milli/src/update/index_documents/helpers/grenad_helpers.rs index dde03c73d..9af9bd019 100644 --- a/milli/src/update/index_documents/helpers/grenad_helpers.rs +++ b/milli/src/update/index_documents/helpers/grenad_helpers.rs @@ -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;