fabriziofortino commented on code in PR #1217: URL: https://github.com/apache/jackrabbit-oak/pull/1217#discussion_r1397538423
########## oak-search-elastic/src/main/java/org/apache/jackrabbit/oak/plugins/index/elastic/query/async/facets/ElasticSecureFacetAsyncProvider.java: ########## @@ -112,16 +111,20 @@ public void endData() { .collect(Collectors.toList()) ) ); - LOG.trace("End data {}", facetsMap); + LOG.trace("End data {}", facets); latch.countDown(); } @Override public List<FulltextIndex.Facet> getFacets(int numberOfFacets, String columnName) { LOG.trace("Requested facets for {} - Latch count: {}", columnName, latch.getCount()); try { - latch.await(15, TimeUnit.SECONDS); + boolean completed = latch.await(15, TimeUnit.SECONDS); Review Comment: Makes sense. But this should stay in a separate PR. ########## oak-search-elastic/src/main/java/org/apache/jackrabbit/oak/plugins/index/elastic/query/async/facets/ElasticStatisticalFacetAsyncProvider.java: ########## @@ -18,145 +18,178 @@ import co.elastic.clients.elasticsearch._types.aggregations.Aggregate; import co.elastic.clients.elasticsearch._types.aggregations.StringTermsBucket; +import co.elastic.clients.elasticsearch._types.query_dsl.BoolQuery; +import co.elastic.clients.elasticsearch._types.query_dsl.Query; +import co.elastic.clients.elasticsearch.core.SearchRequest; +import co.elastic.clients.elasticsearch.core.SearchResponse; import co.elastic.clients.elasticsearch.core.search.Hit; +import co.elastic.clients.elasticsearch.core.search.SourceConfig; +import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.node.ObjectNode; +import org.apache.jackrabbit.oak.plugins.index.elastic.ElasticConnection; +import org.apache.jackrabbit.oak.plugins.index.elastic.ElasticIndexDefinition; import org.apache.jackrabbit.oak.plugins.index.elastic.query.ElasticRequestHandler; import org.apache.jackrabbit.oak.plugins.index.elastic.query.ElasticResponseHandler; -import org.apache.jackrabbit.oak.plugins.index.elastic.query.async.ElasticResponseListener; +import org.apache.jackrabbit.oak.plugins.index.search.FieldNames; import org.apache.jackrabbit.oak.plugins.index.search.spi.query.FulltextIndex; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import java.util.ArrayList; import java.util.HashMap; -import java.util.LinkedList; import java.util.List; import java.util.Map; -import java.util.Random; +import java.util.Set; +import java.util.concurrent.CompletableFuture; +import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.CountDownLatch; import java.util.concurrent.TimeUnit; import java.util.function.Predicate; import java.util.stream.Collectors; /** - * An {@link ElasticSecureFacetAsyncProvider} extension that subscribes also on Elastic Aggregation events. + * An {@link ElasticFacetProvider} extension that performs random sampling on the result set to compute facets. * SearchHit events are sampled and then used to adjust facets coming from Aggregations in order to minimize - * access checks. This provider could improve facets performance but only when the result set is quite big. + * access checks. This provider could improve facets performance especially when the result set is quite big. */ -public class ElasticStatisticalFacetAsyncProvider extends ElasticSecureFacetAsyncProvider - implements ElasticResponseListener.AggregationListener { +public class ElasticStatisticalFacetAsyncProvider implements ElasticFacetProvider { - private final int sampleSize; + private static final Logger LOG = LoggerFactory.getLogger(ElasticStatisticalFacetAsyncProvider.class); + + private final ElasticResponseHandler elasticResponseHandler; + private final Predicate<String> isAccessible; + private final Set<String> facetFields; + private final Map<String, List<FulltextIndex.Facet>> allFacets = new HashMap<>(); + private final Map<String, Map<String, Integer>> accessibleFacetCounts = new ConcurrentHashMap<>(); + private Map<String, List<FulltextIndex.Facet>> facets; + private final CountDownLatch latch = new CountDownLatch(1); + private int sampled; private long totalHits; - private final Random rGen; - private int sampled = 0; - private int seen = 0; - private long accessibleCount = 0; + ElasticStatisticalFacetAsyncProvider(ElasticConnection connection, ElasticIndexDefinition indexDefinition, + ElasticRequestHandler elasticRequestHandler, ElasticResponseHandler elasticResponseHandler, + Predicate<String> isAccessible, long randomSeed, int sampleSize) { - private final Map<String, List<FulltextIndex.Facet>> facetMap = new HashMap<>(); + this.elasticResponseHandler = elasticResponseHandler; + this.isAccessible = isAccessible; + this.facetFields = elasticRequestHandler.facetFields().collect(Collectors.toSet()); - private final CountDownLatch latch = new CountDownLatch(1); + BoolQuery.Builder builder = elasticRequestHandler.baseQueryBuilder(); + builder.should(sb -> sb.functionScore(fsb -> + fsb.functions(f -> f.randomScore(rsb -> rsb.seed("" + randomSeed).field(FieldNames.PATH))) + )); - ElasticStatisticalFacetAsyncProvider(ElasticRequestHandler elasticRequestHandler, - ElasticResponseHandler elasticResponseHandler, - Predicate<String> isAccessible, - long randomSeed, int sampleSize) { - super(elasticRequestHandler, elasticResponseHandler, isAccessible); - this.sampleSize = sampleSize; - this.rGen = new Random(randomSeed); - } + SearchRequest searchRequest = SearchRequest.of(srb -> srb.index(indexDefinition.getIndexAlias()) + .trackTotalHits(thb -> thb.enabled(true)) + .source(SourceConfig.of(scf -> scf.filter(ff -> ff.includes(FieldNames.PATH).includes(new ArrayList<>(facetFields))))) + .query(Query.of(qb -> qb.bool(builder.build()))) + .aggregations(elasticRequestHandler.aggregations()) + .size(sampleSize) + ); - @Override - public void startData(long totalHits) { - this.totalHits = totalHits; + LOG.trace("Kicking search query with random sampling {}", searchRequest); + CompletableFuture<SearchResponse<ObjectNode>> searchFuture = + connection.getAsyncClient().search(searchRequest, ObjectNode.class); + + searchFuture.whenCompleteAsync((searchResponse, throwable) -> { + try { + if (throwable != null) { + LOG.error("Error while retrieving sample documents", throwable); + } else { + List<Hit<ObjectNode>> searchHits = searchResponse.hits().hits(); + this.sampled = searchHits != null ? searchHits.size() : 0; + if (sampled > 0) { + this.totalHits = searchResponse.hits().total().value(); + processAggregations(searchResponse.aggregations()); + searchResponse.hits().hits().forEach(this::processHit); + computeStatisticalFacets(); + } + } + } finally { + latch.countDown(); + } + }); } @Override - public void on(Hit<ObjectNode> searchHit) { - if (totalHits < sampleSize) { - super.on(searchHit); - } else { - if (sampleSize == sampled) { - return; + public List<FulltextIndex.Facet> getFacets(int numberOfFacets, String columnName) { + LOG.trace("Requested facets for {} - Latch count: {}", columnName, latch.getCount()); + try { + boolean completed = latch.await(15, TimeUnit.SECONDS); Review Comment: see comment above -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@jackrabbit.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org