I have a hierarchal aggregate that uses below statement
CREATE MATERIALIZED VIEW IF NOT EXISTS public.values_summary_five_minutes
WITH (timescaledb.continuous,timescaledb.materialized_only = true) AS
SELECT variableid, time_bucket(INTERVAL ‘5 minute’, bucket_interval_one_min) AS bucket_interval_five_min,
MIN(Min_IntValue) as Min_IntValue, MAX(Max_IntValue) as Max_IntValue, SUM(Sum_IntValue) as Sum_IntValue,
COUNT(Count_IntValue) as Count_IntValue, rollup(statsagg_IntValue) as Stats_IntValue, AVG(average(statsagg_IntValue)) as Avg_IntValue
FROM public.values_summary_one_minute_1
GROUP BY variableid, bucket_interval_five_min
Here, I am using Avg(average(statssummary1d)), so that I don’t have to include it in group by. However, the value is not correct. Is there an alternative to finding the average in a
hierarchical aggregate?
2
Answers
You can use
average(rollup(statsagg_IntValue))
directly: demoGiven five 1-minute blocks with the following
IntValues
:The
avg(average(statsagg_IntValue))
would result in 3, since that’s the average of individual, 1-minute averages.The
average(rollup(statsagg_IntValue))
should properly construct a 5-minute block with all of the underlyingIntValues
:and arrive at 3.666666666666666
In PostgreSQL, you normally use a subquery or a window function when you want to calculate an average without include it in the GROUP BY clause. In your situation, a subquery can be used to determine the average. Here’s how to change your query to accomplish that:
Hope it works 🙂