summaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-06-03 04:29:27 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2021-06-03 04:29:27 +0000
commit73fa7f104abd6808d0c180d616b6125d6b3c8889 (patch)
treec727b25a9ae87e23260a6a30639f2bae9473b3f2 /searchlib
parentd31e8cac61e07eca832888cc8440188b8b72467c (diff)
Use 32M which is the same limit used in some other query related places.
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/vespa/searchlib/common/bitvector.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchlib/src/vespa/searchlib/common/bitvector.cpp b/searchlib/src/vespa/searchlib/common/bitvector.cpp
index e80c8f1f108..fa63b846e17 100644
--- a/searchlib/src/vespa/searchlib/common/bitvector.cpp
+++ b/searchlib/src/vespa/searchlib/common/bitvector.cpp
@@ -33,7 +33,7 @@ void verifyInclusiveStart(const search::BitVector & a, const search::BitVector &
}
}
-constexpr size_t MMAP_LIMIT = 16_Mi;
+constexpr size_t MMAP_LIMIT = 32_Mi;
constexpr size_t DIRECTIO_ALIGNMENT = 4_Ki;
}