TOPK
This page describes the TOPK function in Lenses SQL.
TOPK(numExpr, N)
Returns the K highest ranked values. The ranking is based on how many times a value has been seen.
Available in:
Processor (stateless)
Processors (stateful)
SQL Studio
✓
Sample code:
USE `kafka`;
SELECT TOPK(id)
FROM orders-events
Output:
{
"value": {
"TOPK": [
"ffd7c548-06bb-40e9-8aae-558be65c1e70"
]
}
}
Last updated
Was this helpful?