New

The executive guide to generative AI

Read more
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.

Scope

edit

By default, facets are computed within the query resultset. But, you can compute facets from all documents in the index whatever the query is, using global parameter:

TermsFacetBuilder facet = FacetBuilders.termsFacet("f")
    .field("brand")
    .global(true);
Was this helpful?
Feedback