From 94cea7cfa833e46027466d481fb5260a9e0cc554 Mon Sep 17 00:00:00 2001 From: Geir Storli Date: Thu, 23 Jan 2025 16:46:20 +0000 Subject: [PATCH] Use new syntax for filter threshold. --- .../performance/mmap_vs_directio/app/schemas/wikimedia.sd | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tests/performance/mmap_vs_directio/app/schemas/wikimedia.sd b/tests/performance/mmap_vs_directio/app/schemas/wikimedia.sd index 9b3772d98..8a88908f1 100644 --- a/tests/performance/mmap_vs_directio/app/schemas/wikimedia.sd +++ b/tests/performance/mmap_vs_directio/app/schemas/wikimedia.sd @@ -28,10 +28,8 @@ schema wikimedia { } rank-profile use_bitvectors inherits default { - rank-properties { - # This is set to 1/64 which is the limit for generating bitvectors. - vespa.matching.diskindex.bitvector_limit: 0.05 - } + # This is set to 1/64 which is the limit for generating bitvectors. + filter-threshold: 0.05 } rank-profile weakand_stop_word inherits default { @@ -42,10 +40,10 @@ schema wikimedia { } rank-profile weakand_stop_word_use_bitvectors inherits default { + filter-threshold: 0.05 rank-properties { vespa.matching.weakand.stop_word_drop_limit: 0.6 vespa.matching.weakand.stop_word_adjust_limit: 0.01 - vespa.matching.diskindex.bitvector_limit: 0.05 } }