# DISTINCT\_COUNT\_OFF\_HEAP

Returns the count of distinct values. The values are stored using off-heap memory.

## Signature

> DISTINCT\_COUNT\_OFF\_HEAP(col\[, params])

* `col` (required): Name of the column to aggregate on.
* `params` (optional): Semicolon-separated parameter key-value pairs:
  * `initialCapacity`: The initial capacity of the set for non-dictionary-encoded case (default *10000*).
  * `hashbits`: Number of bits for *murmur3*: *32*/*64*/*128* (default *64*)
* Example: `DISTINCT_COUNT_OFF_HEAP(col, 'initialCapacity=100000;hashbits=128')`

## Note

* For variable length data types such as `STRING` and `BYTES`, *murmur3* hash values are used to represent the values.
* Currently it only supports aggregate without group-by. For MV column, it only supports fixes lengh types.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.pinot.apache.org/release-1.4.0/functions-1/distinct_count_off_heap.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
