-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
enhancementNew feature or requestNew feature or request
Description
We want to be able to support things like multiplication of count with the float value, but an arithmetic post aggregator can only multiply things after they've already been summed up. As far as I can tell, we'd need to support Druid's virtual column feature for this to work.
Example SQL query:
SELECT
feature,
SUM(count * floatValue) AS computed_value_sum
FROM "telemetry-signals"
WHERE appID=myAppId
GROUP BY feature;Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request