Scopeedit

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);