Mayank
Mayank
Mayank
David Cromberge
06/09/2023, 12:14 PMMayank
balci
07/13/2023, 11:59 PMFrequentLongsSketch
and FrequentStringsSketch
. Feel free to add comments. https://github.com/apache/pinot/pull/11098 cc @David Cromberge @Mayankbalci
07/14/2023, 12:03 AMPercentileKLL
function[s] here: https://github.com/pinot-contrib/pinot-docs/pull/206/. @Mayank please take a look.David Cromberge
10/13/2023, 3:18 PMAndi Miller
10/19/2023, 4:33 PMbalci
10/25/2023, 6:10 PMDavid Cromberge
10/27/2023, 10:25 PMbalci
04/26/2024, 9:04 PMraghav
06/12/2024, 6:19 AMraghav
06/19/2024, 12:04 PMSaif Ali Khan
07/11/2024, 11:00 AMdistinctCountThetaSketch
with SET_INTERSECT
along with GROUP BY
on a dimension?
For instance, this query gives 0
count along with GROUP BY
but gives correct result without the grouping -
select
seg_id,
distinctCountThetaSketch(
uid_sketch,
'nominalEntries=1024',
'seg_id IN (1, 2)',
'seg_id = 3',
'SET_INTERSECT($1, $2)'
) as users
from analytics
where seg_id IN (1, 2, 3)
group by 1
outputs this result-
seg_id users
1 0
2 0
3 0
raghav
12/23/2024, 9:04 AMraghav
02/11/2025, 7:21 AMRaunak Binani
03/03/2025, 3:42 AM