PostgreSQL 并行聚合工具-PostgreSQL Agg
Agg 是 PostgreSQL 的并行聚合工具。在很长的时间里 PostgreSQL 只是使用单 CPU 核心来执行昂贵的聚合,Agg 的目的是要改变这种情况,把分析操作扩展到大量的 CPU 核心,使用系统的全部计算能力来执行。采用BSD协议授权。agg is ideal for large scale aggreations and analytics.

The main plus is that there is no need to modify your SQL code – agg simply does its work. It speeds up your queries whenever possible. It is totally transparent.
特性
并行执行常规聚合 (sum, count, min, max, etc.)
支持 FILTER-clauses
支持约束限制 (每个分区由一个 CPU 核心处理)
超简单的安装步骤
支持 PostgreSQL 9.5
Agg 非常适合大规模聚合和分析。
最新版本:
项目主页:http://www.cybertec.at/en/products/agg-parallel-aggregations-postgresql/