如何通过Rails 3中的时间片(总和,平均值,最小值,最大值等)获取聚合数据

时间:2011-03-04 18:32:55

标签: sql ruby-on-rails ruby-on-rails-3 postgresql activerecord

如何在Rails 3中创建由时间片聚合的活动关系查询?

我想构建一个查询,每隔n分钟可以为具有特定名称的计数器的每个样本返回min,max,avg,sum,count。

create_table "samples"  
    t.integer  "counter_id"  
    t.string "name"  
    t.float    "value"  
    t.datetime "created_at"  
end  

2 个答案:

答案 0 :(得分:4)

不幸的是我从未使用过Postgres,所以这个解决方案适用于MySQL。但我认为你可以找到Postgres类似物。

class Counter < ActiveRecord::Base
  has_many :samples do
    # default 30 minutes
    def per_time_slice(slice = 30)
      start = "2000-01-01 00:00:00"
      self.select("*, 
                   CONCAT( FLOOR(TIMESTAMPDIFF(MINUTE,'#{start}',created_at)/#{slice})*#{slice},  
                     (FLOOR(TIMESTAMPDIFF(MINUTE,'#{start}',created_at)/#{slice})+1)*#{slice} ) as slice,
                   avg(value) as avg_value, 
                   min(value) as min_value, 
                   max(value) as max_value, 
                   sum(value) as sum_value, 
                   count(value) as count_value").
                   group("slice").order("slice")
    end
  end
end

用法

counter = find_some_counter
samples = counter.samples.per_time_slice(60).where(:name => "Bobby")
samples.map(&:avg_value)
samples.map(&:min_value)
samples.map(&:max_value)

答案 1 :(得分:1)

这应该可以解决问题:

Samples.where("SQL for the time slice goes here").where(:name, "Views").average(:value)

您还可以将平均值换成最小值,最大值和总和。