Slackbot
12/09/2022, 7:44 PMRenato Santos
12/09/2022, 7:46 PMselect * from (
SELECT
path, THETA_SKETCH_ESTIMATE(
THETA_SKETCH_INTERSECT(DS_THETA(ds_mm), DS_THETA(1107243346))
) as path_visited
FROM events
where __time >= ...
group by 1
) sub where sub.path_visited = 1
can I trust that I can run another (heavy) query to check the information (to test if the user really visited some path) but I can skip any check if no results were found ?Renato Santos
12/09/2022, 7:48 PMVadim
12/09/2022, 8:18 PMRenato Santos
12/09/2022, 8:27 PMRenato Santos
12/09/2022, 9:08 PMVijay Narayanan
12/10/2022, 1:46 AMVijay Narayanan
12/10/2022, 4:00 AMVijay Narayanan
12/10/2022, 4:03 AMVijay Narayanan
12/10/2022, 4:06 AMRenato Santos
12/12/2022, 1:15 AM{
"type": "thetaSketch",
"name": "ds_mm",
"fieldName": "mm",
"size": 16384,
"shouldFinalize": true,
"isInputThetaSketch": false,
"errorBoundsStdDev": null
}
I tried some values, if I choose users from a small combination, it works, but I choose a userid from a big pop, It failsRenato Santos
12/12/2022, 1:15 AMRenato Santos
12/12/2022, 1:16 AMRenato Santos
12/12/2022, 1:23 AMRenato Santos
12/12/2022, 1:24 AM