CavalliumDBEngine/src/main/java/it/cavallium/dbengine/lucene/searcher/AdaptiveMultiSearcher.java

85 lines
3.4 KiB
Java
Raw Normal View History

package it.cavallium.dbengine.lucene.searcher;
2022-01-28 21:12:10 +01:00
import static it.cavallium.dbengine.lucene.searcher.GlobalQueryRewrite.NO_REWRITE;
import it.cavallium.dbengine.database.LLKeyScore;
2021-09-20 12:51:27 +02:00
import it.cavallium.dbengine.database.disk.LLIndexSearchers;
2022-07-02 11:44:13 +02:00
import it.cavallium.dbengine.lucene.LuceneUtils;
import java.util.function.Function;
import java.util.stream.Stream;
2021-12-12 16:41:49 +01:00
import org.jetbrains.annotations.Nullable;
public class AdaptiveMultiSearcher implements MultiSearcher {
2022-03-15 12:36:33 +01:00
private static final StandardSearcher standardSearcher = new StandardSearcher();
2021-12-12 16:41:49 +01:00
2021-11-09 00:05:26 +01:00
private static final MultiSearcher count = new CountMultiSearcher();
2021-10-15 22:03:53 +02:00
private static final MultiSearcher scoredPaged = new ScoredPagedMultiSearcher();
2021-07-27 19:34:51 +02:00
2021-12-23 02:13:51 +01:00
private static final MultiSearcher unsortedUnscoredContinuous = new UnsortedStreamingMultiSearcher();
2021-12-12 23:40:30 +01:00
/**
* Use in-memory collectors if the expected results count is lower or equal than this limit
*/
private final int maxInMemoryResultEntries;
public AdaptiveMultiSearcher(int maxInMemoryResultEntries) {
2021-12-12 23:40:30 +01:00
this.maxInMemoryResultEntries = maxInMemoryResultEntries;
}
@Override
public LuceneSearchResult collectMulti(LLIndexSearchers indexSearchers,
2021-09-19 19:59:37 +02:00
LocalQueryParams queryParams,
2022-02-26 03:28:20 +01:00
@Nullable String keyFieldName,
GlobalQueryRewrite transformer,
Function<Stream<LLKeyScore>, Stream<LLKeyScore>> filterer) {
2022-07-02 11:44:13 +02:00
if (transformer != NO_REWRITE) {
return LuceneUtils.rewriteMulti(this, indexSearchers, queryParams, keyFieldName, transformer, filterer);
2022-07-02 11:44:13 +02:00
}
return transformedCollectMulti(indexSearchers, queryParams, keyFieldName, transformer, filterer);
}
2021-11-21 12:31:23 +01:00
// Remember to change also AdaptiveLocalSearcher
public LuceneSearchResult transformedCollectMulti(LLIndexSearchers indexSearchers,
LocalQueryParams queryParams,
2022-02-26 03:28:20 +01:00
@Nullable String keyFieldName,
GlobalQueryRewrite transformer,
Function<Stream<LLKeyScore>, Stream<LLKeyScore>> filterer) {
// offset + limit
2021-10-15 22:03:53 +02:00
long realLimit = queryParams.offsetLong() + queryParams.limitLong();
long maxAllowedInMemoryLimit
2021-12-12 23:40:30 +01:00
= Math.max(maxInMemoryResultEntries, (long) queryParams.pageLimits().getPageLimit(0));
if (queryParams.limitLong() == 0) {
return count.collectMulti(indexSearchers, queryParams, keyFieldName, transformer, filterer);
} else if (realLimit <= maxInMemoryResultEntries) {
return standardSearcher.collectMulti(indexSearchers, queryParams, keyFieldName, transformer, filterer);
2022-08-12 02:08:15 +02:00
} else if (queryParams.isSorted()) {
if (realLimit <= maxAllowedInMemoryLimit) {
return scoredPaged.collectMulti(indexSearchers, queryParams, keyFieldName, transformer, filterer);
2022-06-14 13:10:38 +02:00
} else {
if (queryParams.isSortedByScore()) {
if (queryParams.limitLong() < maxInMemoryResultEntries) {
2022-06-14 13:10:38 +02:00
throw new UnsupportedOperationException("Allowed limit is " + maxInMemoryResultEntries + " or greater");
}
return scoredPaged.collectMulti(indexSearchers, queryParams, keyFieldName, transformer, filterer);
} else {
if (queryParams.limitLong() < maxInMemoryResultEntries) {
2022-06-14 13:10:38 +02:00
throw new UnsupportedOperationException("Allowed limit is " + maxInMemoryResultEntries + " or greater");
}
return scoredPaged.collectMulti(indexSearchers, queryParams, keyFieldName, transformer, filterer);
}
}
2022-06-14 13:10:38 +02:00
} else {
// Run large/unbounded searches using the continuous multi searcher
return unsortedUnscoredContinuous.collectMulti(indexSearchers, queryParams, keyFieldName, transformer, filterer);
2022-06-14 13:10:38 +02:00
}
}
@Override
2023-03-20 00:36:27 +01:00
public String toString() {
return "adaptive local";
}
}