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

110 lines
4.5 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.client.UninterruptibleScheduler.uninterruptibleScheduler;
2022-06-14 17:46:49 +02:00
import static it.cavallium.dbengine.database.LLUtils.singleOrClose;
2022-01-28 21:12:10 +01:00
import static it.cavallium.dbengine.lucene.searcher.GlobalQueryRewrite.NO_REWRITE;
2022-06-14 17:46:49 +02:00
import it.cavallium.dbengine.database.LLUtils;
2021-09-18 18:34:21 +02:00
import it.cavallium.dbengine.database.disk.LLIndexSearcher;
2021-09-20 12:51:27 +02:00
import it.cavallium.dbengine.database.disk.LLIndexSearchers;
import it.cavallium.dbengine.database.disk.LLTempHugePqEnv;
2021-12-12 16:41:49 +01:00
import org.jetbrains.annotations.Nullable;
import reactor.core.publisher.Mono;
2022-01-28 21:12:10 +01:00
import reactor.core.scheduler.Schedulers;
public class AdaptiveLocalSearcher implements LocalSearcher {
2022-03-15 12:36:33 +01:00
private static final StandardSearcher standardSearcher = new StandardSearcher();
2021-12-12 16:41:49 +01:00
private static final LocalSearcher scoredPaged = new PagedLocalSearcher();
2021-11-09 00:05:26 +01:00
private static final LocalSearcher countSearcher = new CountMultiSearcher();
2021-07-06 01:30:37 +02:00
2021-12-23 02:13:51 +01:00
private static final MultiSearcher unsortedUnscoredContinuous = new UnsortedStreamingMultiSearcher();
2021-11-21 12:31:23 +01:00
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;
2021-12-12 16:41:49 +01:00
@Nullable
2021-12-23 02:13:51 +01:00
private final SortedByScoreFullMultiSearcher sortedByScoreFull;
2021-11-21 12:31:23 +01:00
2021-12-12 16:41:49 +01:00
@Nullable
2021-11-21 12:31:23 +01:00
private final SortedScoredFullMultiSearcher sortedScoredFull;
public AdaptiveLocalSearcher(LLTempHugePqEnv env, boolean useHugePq, int maxInMemoryResultEntries) {
sortedByScoreFull = useHugePq ? new SortedByScoreFullMultiSearcher(env) : null;
sortedScoredFull = useHugePq ? new SortedScoredFullMultiSearcher(env) : null;
2021-12-12 23:40:30 +01:00
this.maxInMemoryResultEntries = maxInMemoryResultEntries;
2021-11-21 12:31:23 +01:00
}
@Override
2022-06-14 13:10:38 +02:00
public Mono<LuceneSearchResult> collect(Mono<LLIndexSearcher> indexSearcherMono,
2021-07-06 01:30:37 +02:00
LocalQueryParams queryParams,
2022-02-26 03:28:20 +01:00
@Nullable String keyFieldName,
2022-01-28 21:12:10 +01:00
GlobalQueryRewrite transformer) {
2022-06-14 17:46:49 +02:00
return singleOrClose(indexSearcherMono, indexSearcher -> {
2022-06-14 13:10:38 +02:00
var indexSearchers = LLIndexSearchers.unsharded(indexSearcher);
2022-06-14 13:10:38 +02:00
if (transformer == NO_REWRITE) {
return transformedCollect(indexSearcher, queryParams, keyFieldName, transformer);
} else {
return Mono
.fromCallable(() -> transformer.rewrite(indexSearchers, queryParams))
.subscribeOn(uninterruptibleScheduler(Schedulers.boundedElastic()))
.flatMap(queryParams2 -> transformedCollect(indexSearcher, queryParams2, keyFieldName, NO_REWRITE));
}
});
}
@Override
public String getName() {
return "adaptivelocal";
}
2021-11-21 12:31:23 +01:00
// Remember to change also AdaptiveMultiSearcher
2022-06-14 13:10:38 +02:00
public Mono<LuceneSearchResult> transformedCollect(LLIndexSearcher indexSearcher,
LocalQueryParams queryParams,
String keyFieldName,
2022-01-28 21:12:10 +01:00
GlobalQueryRewrite transformer) {
2021-11-21 12:31:23 +01:00
// offset + limit
long realLimit = queryParams.offsetLong() + queryParams.limitLong();
long maxAllowedInMemoryLimit
2021-12-12 23:40:30 +01:00
= Math.max(maxInMemoryResultEntries, (long) queryParams.pageLimits().getPageLimit(0));
2021-11-21 12:31:23 +01:00
2021-10-15 22:03:53 +02:00
if (queryParams.limitLong() == 0) {
2022-06-14 13:10:38 +02:00
return countSearcher.collect(Mono.just(indexSearcher), queryParams, keyFieldName, transformer);
2022-03-15 12:36:33 +01:00
} else if (realLimit <= maxInMemoryResultEntries) {
2022-06-14 13:10:38 +02:00
return standardSearcher.collect(Mono.just(indexSearcher), queryParams, keyFieldName, transformer);
2021-12-23 02:13:51 +01:00
} else if (queryParams.isSorted()) {
2021-11-21 12:31:23 +01:00
if (realLimit <= maxAllowedInMemoryLimit) {
2022-06-14 13:10:38 +02:00
return scoredPaged.collect(Mono.just(indexSearcher), queryParams, keyFieldName, transformer);
2021-11-21 12:31:23 +01:00
} else {
2021-12-23 02:13:51 +01:00
if (queryParams.isSortedByScore()) {
2021-12-12 23:40:30 +01:00
if (queryParams.limitLong() < maxInMemoryResultEntries) {
throw new UnsupportedOperationException("Allowed limit is " + maxInMemoryResultEntries + " or greater");
2021-11-21 12:31:23 +01:00
}
2021-12-23 02:13:51 +01:00
if (sortedByScoreFull != null) {
2022-06-14 13:10:38 +02:00
return sortedByScoreFull.collect(Mono.just(indexSearcher), queryParams, keyFieldName, transformer);
2021-12-12 16:41:49 +01:00
} else {
2022-06-14 13:10:38 +02:00
return scoredPaged.collect(Mono.just(indexSearcher), queryParams, keyFieldName, transformer);
2021-12-12 16:41:49 +01:00
}
2021-11-21 12:31:23 +01:00
} else {
2021-12-12 23:40:30 +01:00
if (queryParams.limitLong() < maxInMemoryResultEntries) {
throw new UnsupportedOperationException("Allowed limit is " + maxInMemoryResultEntries + " or greater");
2021-11-21 12:31:23 +01:00
}
2021-12-23 02:13:51 +01:00
if (sortedScoredFull != null) {
2022-06-14 13:10:38 +02:00
return sortedScoredFull.collect(Mono.just(indexSearcher), queryParams, keyFieldName, transformer);
2021-12-12 16:41:49 +01:00
} else {
2022-06-14 13:10:38 +02:00
return scoredPaged.collect(Mono.just(indexSearcher), queryParams, keyFieldName, transformer);
2021-12-12 16:41:49 +01:00
}
2021-11-21 12:31:23 +01:00
}
}
2021-07-06 01:30:37 +02:00
} else {
2021-11-21 12:31:23 +01:00
// Run large/unbounded searches using the continuous multi searcher
2022-06-14 13:10:38 +02:00
return unsortedUnscoredContinuous.collect(Mono.just(indexSearcher), queryParams, keyFieldName, transformer);
2021-07-06 01:30:37 +02:00
}
}
}