summaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton
diff options
context:
space:
mode:
authorGeir Storli <geirst@yahooinc.com>2022-10-20 15:38:53 +0000
committerGeir Storli <geirst@yahooinc.com>2022-10-20 15:38:53 +0000
commitbed93841e3ccb7ef4d8fa084d4edd8c0b43b4c06 (patch)
treec12609ea8dbe13f0608b9162526a4c8655df82f8 /searchcore/src/tests/proton
parent373ba6880a5f7fb91682996ec971d5974edfce32 (diff)
Return the full search iterator when all lids are active.
This opens up for optimizations of the global filter iterator tree based on SearchIterator::matches_any().
Diffstat (limited to 'searchcore/src/tests/proton')
-rw-r--r--searchcore/src/tests/proton/documentmetastore/lid_allocator/lid_allocator_test.cpp37
1 files changed, 37 insertions, 0 deletions
diff --git a/searchcore/src/tests/proton/documentmetastore/lid_allocator/lid_allocator_test.cpp b/searchcore/src/tests/proton/documentmetastore/lid_allocator/lid_allocator_test.cpp
index 8d8674da4f0..19212160496 100644
--- a/searchcore/src/tests/proton/documentmetastore/lid_allocator/lid_allocator_test.cpp
+++ b/searchcore/src/tests/proton/documentmetastore/lid_allocator/lid_allocator_test.cpp
@@ -1,13 +1,18 @@
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/searchcore/proton/documentmetastore/lid_allocator.h>
+#include <vespa/searchlib/queryeval/searchiterator.h>
+#include <vespa/searchlib/queryeval/simpleresult.h>
#include <vespa/vespalib/util/generationholder.h>
#include <vespa/vespalib/util/time.h>
#include <vespa/vespalib/gtest/gtest.h>
#include <iostream>
+using search::queryeval::Blueprint;
+using search::queryeval::SimpleResult;
using vespalib::GenerationHolder;
using vespalib::Timer;
+using vespalib::Trinary;
namespace proton {
@@ -94,6 +99,22 @@ protected:
return result;
}
+ SimpleResult get_active_lids_in_search_iterator(uint32_t docid_limit) {
+ auto blueprint = _allocator.createWhiteListBlueprint();
+ blueprint->setDocIdLimit(docid_limit);
+ auto iterator = blueprint->createFilterSearch(true, search::queryeval::Blueprint::FilterConstraint::UPPER_BOUND);
+ SimpleResult res;
+ res.search(*iterator, docid_limit);
+ return res;
+ }
+
+ Trinary search_iterator_matches_any(uint32_t docid_limit) {
+ auto blueprint = _allocator.createWhiteListBlueprint();
+ blueprint->setDocIdLimit(docid_limit);
+ auto iterator = blueprint->createFilterSearch(true, search::queryeval::Blueprint::FilterConstraint::UPPER_BOUND);
+ return iterator->matches_any();
+ }
+
void
assert_valid_lids(const std::vector<uint32_t>& exp_lids) {
EXPECT_EQ(exp_lids, get_valid_lids());
@@ -121,6 +142,22 @@ TEST_F(LidAllocatorTest, unregister_lids)
EXPECT_EQ((std::vector<uint32_t>{1, 3, 5, 7, 8}), alloc_lids(5));
}
+TEST_F(LidAllocatorTest, active_lids_are_available_in_search_iterator)
+{
+ register_lids({ 1, 2, 3, 4 });
+ activate_lids({ 1, 2, 4 }, true);
+ EXPECT_EQ(Trinary::Undefined, search_iterator_matches_any(5));
+ EXPECT_EQ(SimpleResult({1, 2, 4}), get_active_lids_in_search_iterator(5));
+}
+
+TEST_F(LidAllocatorTest, search_iterator_matches_all_when_all_lids_are_active)
+{
+ register_lids({ 1, 2, 3, 4 });
+ activate_lids({ 1, 2, 3, 4 }, true);
+ EXPECT_EQ(Trinary::True, search_iterator_matches_any(5));
+ EXPECT_EQ(SimpleResult({1, 2, 3, 4}), get_active_lids_in_search_iterator(5));
+}
+
class LidAllocatorPerformanceTest : public LidAllocatorTest,
public testing::WithParamInterface<bool>
{