Enum TermsAggregationExecutionHint
Determines how the terms aggregation is executed
Namespace: OpenSearch.Client
Assembly: OpenSearch.Client.dll
Syntax
public enum TermsAggregationExecutionHint
Fields
| Name | Description |
|---|---|
| GlobalOrdinals | Order by using ordinals of the field and preemptively allocating one bucket per ordinal value |
| GlobalOrdinalsHash | Order by using ordinals of the field and dynamically allocating one bucket per ordinal value |
| GlobalOrdinalsLowCardinality | Order by using per-segment ordinals to compute counts and remap these counts to global counts using global ordinals |
| Map | Order by using field values directly in order to aggregate data per-bucket |