Skip to main content
A scalar function. Extracts a cardinality estimate of a single Apache DataSketches HLL sketches that was previously built using the aggregate function APACHE_DATASKETCHES_HLL_BUILD. The APACHE_DATASKETCHES_HLL_ESTIMATE function is used to estimate the cardinality (number of unique elements) of a dataset represented by an HLL (HyperLogLog) sketch. This is particularly useful for large datasets where exact counting is computationally expensive.

Syntax

Parameters

Return Type

BIGINT

Error Handling

If the input expression is not a valid Apache DataSketches HLL sketches, the function will raise an error. Ensure that the input is correctly formatted and generated by the APACHE_DATASKETCHES_HLL_BUILD function.

Example

Following the example in APACHE_DATASKETCHES_HLL_BUILD: