2017-09-14 21:59:15 +08:00
|
|
|
const BaseDataview = require('./base');
|
2017-09-14 22:10:23 +08:00
|
|
|
const debug = require('debug')('windshaft:dataview:aggregation');
|
2016-03-22 20:10:42 +08:00
|
|
|
|
2017-09-14 00:38:54 +08:00
|
|
|
const filteredQueryTpl = ctx => `
|
|
|
|
filtered_source AS (
|
|
|
|
SELECT *
|
2017-09-14 19:14:12 +08:00
|
|
|
FROM (${ctx.query}) _cdb_filtered_source
|
|
|
|
${ctx.aggregationColumn && ctx.isFloatColumn ? `
|
2017-09-14 00:38:54 +08:00
|
|
|
WHERE
|
2017-09-14 19:14:12 +08:00
|
|
|
${ctx.aggregationColumn} != 'infinity'::float
|
2017-09-14 00:38:54 +08:00
|
|
|
AND
|
2017-09-14 19:14:12 +08:00
|
|
|
${ctx.aggregationColumn} != '-infinity'::float
|
2017-09-14 00:38:54 +08:00
|
|
|
AND
|
2017-09-14 19:14:12 +08:00
|
|
|
${ctx.aggregationColumn} != 'NaN'::float` :
|
2017-09-14 00:38:54 +08:00
|
|
|
''
|
|
|
|
}
|
|
|
|
)
|
|
|
|
`;
|
|
|
|
|
|
|
|
const summaryQueryTpl = ctx => `
|
|
|
|
summary AS (
|
|
|
|
SELECT
|
|
|
|
count(1) AS count,
|
2017-09-14 19:14:12 +08:00
|
|
|
sum(CASE WHEN ${ctx.column} IS NULL THEN 1 ELSE 0 END) AS nulls_count
|
|
|
|
${ctx.isFloatColumn ? `,
|
2017-09-14 00:38:54 +08:00
|
|
|
sum(
|
|
|
|
CASE
|
2017-09-14 19:14:12 +08:00
|
|
|
WHEN ${ctx.aggregationColumn} = 'infinity'::float OR ${ctx.aggregationColumn} = '-infinity'::float
|
2017-09-14 00:38:54 +08:00
|
|
|
THEN 1
|
|
|
|
ELSE 0
|
|
|
|
END
|
|
|
|
) AS infinities_count,
|
2017-09-14 19:14:12 +08:00
|
|
|
sum(CASE WHEN ${ctx.aggregationColumn} = 'NaN'::float THEN 1 ELSE 0 END) AS nans_count` :
|
2017-09-14 00:38:54 +08:00
|
|
|
''
|
|
|
|
}
|
2017-09-14 19:14:12 +08:00
|
|
|
FROM (${ctx.query}) _cdb_aggregation_nulls
|
2017-09-14 00:38:54 +08:00
|
|
|
)
|
|
|
|
`;
|
|
|
|
|
|
|
|
const rankedCategoriesQueryTpl = ctx => `
|
|
|
|
categories AS(
|
|
|
|
SELECT
|
2017-09-14 19:14:12 +08:00
|
|
|
${ctx.column} AS category,
|
|
|
|
${ctx.aggregationFn} AS value,
|
|
|
|
row_number() OVER (ORDER BY ${ctx.aggregationFn} desc) as rank
|
2017-09-14 00:38:54 +08:00
|
|
|
FROM filtered_source
|
2017-09-14 19:14:12 +08:00
|
|
|
${ctx.aggregationColumn !== null ? `WHERE ${ctx.aggregationColumn} IS NOT NULL` : ''}
|
|
|
|
GROUP BY ${ctx.column}
|
2017-09-14 00:38:54 +08:00
|
|
|
ORDER BY 2 DESC
|
|
|
|
)
|
|
|
|
`;
|
|
|
|
|
|
|
|
const categoriesSummaryMinMaxQueryTpl = () => `
|
|
|
|
categories_summary_min_max AS(
|
|
|
|
SELECT
|
|
|
|
max(value) max_val,
|
|
|
|
min(value) min_val
|
|
|
|
FROM categories
|
|
|
|
)
|
|
|
|
`;
|
|
|
|
|
|
|
|
const categoriesSummaryCountQueryTpl = ctx => `
|
|
|
|
categories_summary_count AS(
|
|
|
|
SELECT count(1) AS categories_count
|
|
|
|
FROM (
|
2017-09-14 19:14:12 +08:00
|
|
|
SELECT ${ctx.column} AS category
|
|
|
|
FROM (${ctx.query}) _cdb_categories
|
|
|
|
GROUP BY ${ctx.column}
|
2017-09-14 00:38:54 +08:00
|
|
|
) _cdb_categories_count
|
|
|
|
)
|
|
|
|
`;
|
|
|
|
|
|
|
|
const specialNumericValuesColumns = () => `, nans_count, infinities_count`;
|
|
|
|
|
|
|
|
const rankedAggregationQueryTpl = ctx => `
|
|
|
|
SELECT
|
|
|
|
CAST(category AS text),
|
|
|
|
value,
|
|
|
|
false as agg,
|
|
|
|
nulls_count,
|
|
|
|
min_val,
|
|
|
|
max_val,
|
|
|
|
count,
|
|
|
|
categories_count
|
2017-09-14 19:14:12 +08:00
|
|
|
${ctx.isFloatColumn ? `${specialNumericValuesColumns(ctx)}` : '' }
|
2017-09-14 00:38:54 +08:00
|
|
|
FROM categories, summary, categories_summary_min_max, categories_summary_count
|
2017-09-14 19:14:12 +08:00
|
|
|
WHERE rank < ${ctx.limit}
|
2017-09-14 00:38:54 +08:00
|
|
|
UNION ALL
|
|
|
|
SELECT
|
|
|
|
'Other' category,
|
2017-09-14 19:14:12 +08:00
|
|
|
${ctx.aggregation !== 'count' ? ctx.aggregation : 'sum'}(value) as value,
|
2017-09-14 00:38:54 +08:00
|
|
|
true as agg,
|
|
|
|
nulls_count,
|
|
|
|
min_val,
|
|
|
|
max_val,
|
|
|
|
count,
|
|
|
|
categories_count
|
2017-09-14 19:14:12 +08:00
|
|
|
${ctx.isFloatColumn ? `${specialNumericValuesColumns(ctx)}` : '' }
|
2017-09-14 00:38:54 +08:00
|
|
|
FROM categories, summary, categories_summary_min_max, categories_summary_count
|
2017-09-14 19:14:12 +08:00
|
|
|
WHERE rank >= ${ctx.limit}
|
2017-09-14 00:38:54 +08:00
|
|
|
GROUP BY
|
|
|
|
nulls_count,
|
|
|
|
min_val,
|
|
|
|
max_val,
|
|
|
|
count,
|
|
|
|
categories_count
|
2017-09-14 19:14:12 +08:00
|
|
|
${ctx.isFloatColumn ? `${specialNumericValuesColumns(ctx)}` : '' }
|
2017-09-14 00:38:54 +08:00
|
|
|
`;
|
|
|
|
|
|
|
|
const aggregationQueryTpl = ctx => `
|
|
|
|
SELECT
|
2017-09-14 19:14:12 +08:00
|
|
|
CAST(${ctx.column} AS text) AS category,
|
|
|
|
${ctx.aggregationFn} AS value,
|
2017-09-14 00:38:54 +08:00
|
|
|
false as agg,
|
|
|
|
nulls_count,
|
|
|
|
min_val,
|
|
|
|
max_val,
|
|
|
|
count,
|
|
|
|
categories_count
|
2017-09-14 19:14:12 +08:00
|
|
|
${ctx.isFloatColumn ? `${specialNumericValuesColumns(ctx)}` : '' }
|
|
|
|
FROM (${ctx.query}) _cdb_aggregation_all, summary, categories_summary_min_max, categories_summary_count
|
2017-09-14 00:38:54 +08:00
|
|
|
GROUP BY
|
|
|
|
category,
|
|
|
|
nulls_count,
|
|
|
|
min_val,
|
|
|
|
max_val,
|
|
|
|
count,
|
|
|
|
categories_count
|
2017-09-14 19:14:12 +08:00
|
|
|
${ctx.isFloatColumn ? `${specialNumericValuesColumns(ctx)}` : '' }
|
2017-09-14 00:38:54 +08:00
|
|
|
ORDER BY value DESC
|
|
|
|
`;
|
2016-03-22 20:10:42 +08:00
|
|
|
|
2017-09-14 17:27:03 +08:00
|
|
|
const aggregationFnQueryTpl = ctx => `${ctx.aggregation}(${ctx.aggregationColumn})`;
|
|
|
|
|
2017-09-14 21:07:30 +08:00
|
|
|
const aggregationDataviewQueryTpl = ctx => `
|
|
|
|
WITH
|
|
|
|
${filteredQueryTpl(ctx)},
|
|
|
|
${summaryQueryTpl(ctx)},
|
|
|
|
${rankedCategoriesQueryTpl(ctx)},
|
|
|
|
${categoriesSummaryMinMaxQueryTpl(ctx)},
|
|
|
|
${categoriesSummaryCountQueryTpl(ctx)}
|
2017-09-14 19:14:12 +08:00
|
|
|
${!!ctx.override.ownFilter ? `${aggregationQueryTpl(ctx)}` : `${rankedAggregationQueryTpl(ctx)}`}
|
2017-09-14 18:18:03 +08:00
|
|
|
`;
|
|
|
|
|
2017-09-14 22:09:44 +08:00
|
|
|
const filterCategoriesQueryTpl = ctx => `
|
|
|
|
SELECT
|
|
|
|
${ctx.column} AS category,
|
|
|
|
${ctx.value} AS value
|
|
|
|
FROM (${ctx.query}) _cdb_aggregation_search
|
|
|
|
WHERE CAST(${ctx.column} as text) ILIKE ${ctx.userQuery}
|
|
|
|
GROUP BY ${ctx.column}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const searchQueryTpl = ctx => `
|
|
|
|
WITH
|
|
|
|
search_unfiltered AS (
|
|
|
|
${ctx.searchUnfiltered}
|
|
|
|
),
|
|
|
|
search_filtered AS (
|
|
|
|
${ctx.searchFiltered}
|
|
|
|
),
|
|
|
|
search_union AS (
|
|
|
|
SELECT * FROM search_unfiltered
|
|
|
|
UNION ALL
|
|
|
|
SELECT * FROM search_filtered
|
|
|
|
)
|
|
|
|
SELECT category, sum(value) AS value
|
|
|
|
FROM search_union
|
|
|
|
GROUP BY category
|
|
|
|
ORDER BY value desc
|
|
|
|
`;
|
|
|
|
|
2017-09-14 00:40:09 +08:00
|
|
|
const CATEGORIES_LIMIT = 6;
|
2016-03-22 20:10:42 +08:00
|
|
|
|
2017-09-14 00:40:09 +08:00
|
|
|
const VALID_OPERATIONS = {
|
2016-03-22 20:10:42 +08:00
|
|
|
count: [],
|
2016-06-20 22:20:48 +08:00
|
|
|
sum: ['aggregationColumn'],
|
|
|
|
avg: ['aggregationColumn'],
|
|
|
|
min: ['aggregationColumn'],
|
|
|
|
max: ['aggregationColumn']
|
2016-03-22 20:10:42 +08:00
|
|
|
};
|
|
|
|
|
2017-09-14 00:40:09 +08:00
|
|
|
const TYPE = 'aggregation';
|
2016-03-22 20:10:42 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
{
|
|
|
|
type: 'aggregation',
|
|
|
|
options: {
|
|
|
|
column: 'name',
|
|
|
|
aggregation: 'count' // it could be, e.g., sum if column is numeric
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
2017-09-14 21:59:15 +08:00
|
|
|
module.exports = class Aggregation extends BaseDataview {
|
2017-09-14 21:57:18 +08:00
|
|
|
constructor (query, options = {}, queries = {}) {
|
|
|
|
super();
|
2016-03-22 20:10:42 +08:00
|
|
|
|
2017-09-14 21:57:18 +08:00
|
|
|
if (typeof options.column !== 'string') {
|
2017-09-14 22:12:39 +08:00
|
|
|
throw new Error(`Aggregation expects 'column' in dataview options`);
|
2017-09-14 21:57:18 +08:00
|
|
|
}
|
2016-03-22 20:10:42 +08:00
|
|
|
|
2017-09-14 21:57:18 +08:00
|
|
|
if (typeof options.aggregation !== 'string') {
|
2017-09-14 22:12:39 +08:00
|
|
|
throw new Error(`Aggregation expects 'aggregation' operation in dataview options`);
|
2017-09-14 21:57:18 +08:00
|
|
|
}
|
2016-03-22 20:10:42 +08:00
|
|
|
|
2017-09-14 21:57:18 +08:00
|
|
|
if (!VALID_OPERATIONS[options.aggregation]) {
|
2017-09-14 21:59:15 +08:00
|
|
|
throw new Error(`Aggregation does not support '${options.aggregation}' operation`);
|
2017-09-14 21:57:18 +08:00
|
|
|
}
|
2017-09-14 01:16:08 +08:00
|
|
|
|
2017-09-14 22:08:12 +08:00
|
|
|
const requiredOptions = VALID_OPERATIONS[options.aggregation];
|
|
|
|
const missingOptions = requiredOptions.filter(requiredOption => !options.hasOwnProperty(requiredOption));
|
2017-09-14 21:57:18 +08:00
|
|
|
|
|
|
|
if (missingOptions.length > 0) {
|
|
|
|
throw new Error(
|
|
|
|
`Aggregation '${options.aggregation}' is missing some options: ${missingOptions.join(',')}`
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.query = query;
|
|
|
|
this.queries = queries;
|
|
|
|
this.column = options.column;
|
|
|
|
this.aggregation = options.aggregation;
|
|
|
|
this.aggregationColumn = options.aggregationColumn;
|
|
|
|
this._isFloatColumn = null;
|
2016-03-22 20:10:42 +08:00
|
|
|
}
|
|
|
|
|
2017-09-14 21:57:18 +08:00
|
|
|
sql (psql, override, callback) {
|
2017-09-14 22:08:12 +08:00
|
|
|
const self = this;
|
2016-03-22 20:10:42 +08:00
|
|
|
|
2017-09-14 21:57:18 +08:00
|
|
|
if (!callback) {
|
|
|
|
callback = override;
|
|
|
|
override = {};
|
|
|
|
}
|
2016-03-22 20:10:42 +08:00
|
|
|
|
2017-09-14 21:57:18 +08:00
|
|
|
if (this.aggregationColumn && this._isFloatColumn === null) {
|
|
|
|
this._isFloatColumn = false;
|
|
|
|
this.getColumnType(psql, this.aggregationColumn, this.queries.no_filters, function (err, type) {
|
|
|
|
if (!err && !!type) {
|
|
|
|
self._isFloatColumn = type.float;
|
|
|
|
}
|
|
|
|
self.sql(psql, override, callback);
|
|
|
|
});
|
|
|
|
return null;
|
|
|
|
}
|
2016-03-22 20:10:42 +08:00
|
|
|
|
2017-09-14 22:08:12 +08:00
|
|
|
const aggregationSql = aggregationDataviewQueryTpl({
|
2017-09-14 21:57:18 +08:00
|
|
|
override: override,
|
|
|
|
query: this.query,
|
|
|
|
column: this.column,
|
|
|
|
aggregation: this.aggregation,
|
|
|
|
aggregationColumn: this.aggregation !== 'count' ? this.aggregationColumn : null,
|
|
|
|
aggregationFn: aggregationFnQueryTpl({
|
|
|
|
aggregation: this.aggregation,
|
|
|
|
aggregationColumn: this.aggregationColumn || 1
|
|
|
|
}),
|
|
|
|
isFloatColumn: this._isFloatColumn,
|
|
|
|
limit: CATEGORIES_LIMIT
|
|
|
|
});
|
2016-03-22 20:10:42 +08:00
|
|
|
|
2017-09-14 21:57:18 +08:00
|
|
|
debug(aggregationSql);
|
2017-06-16 01:07:31 +08:00
|
|
|
|
2017-09-14 21:57:18 +08:00
|
|
|
return callback(null, aggregationSql);
|
2016-03-22 20:10:42 +08:00
|
|
|
}
|
|
|
|
|
2017-09-14 21:57:18 +08:00
|
|
|
format (result) {
|
2017-09-14 22:30:46 +08:00
|
|
|
const {
|
|
|
|
count = 0,
|
|
|
|
nulls_count = 0,
|
|
|
|
nans_count = 0,
|
|
|
|
infinities_count = 0,
|
|
|
|
min_val = 0,
|
|
|
|
max_val = 0,
|
|
|
|
categories_count = 0
|
|
|
|
} = result.rows[0] || {};
|
2017-06-16 01:07:31 +08:00
|
|
|
|
2017-09-14 21:57:18 +08:00
|
|
|
return {
|
2017-09-14 19:14:12 +08:00
|
|
|
aggregation: this.aggregation,
|
2017-09-14 21:57:18 +08:00
|
|
|
count: count,
|
2017-09-14 22:30:46 +08:00
|
|
|
nulls: nulls_count,
|
|
|
|
nans: nans_count,
|
|
|
|
infinities: infinities_count,
|
|
|
|
min: min_val,
|
|
|
|
max: max_val,
|
|
|
|
categoriesCount: categories_count,
|
|
|
|
categories: result.rows.map(({ category, value, agg }) => ({ category, value, agg }))
|
2017-09-14 21:57:18 +08:00
|
|
|
};
|
|
|
|
}
|
2016-03-22 20:10:42 +08:00
|
|
|
|
2017-09-14 21:57:18 +08:00
|
|
|
search (psql, userQuery, callback) {
|
2017-09-14 22:08:12 +08:00
|
|
|
const self = this;
|
2017-09-14 21:57:18 +08:00
|
|
|
|
2017-09-14 22:08:12 +08:00
|
|
|
const escapedUserQuery = psql.escapeLiteral('%' + userQuery + '%');
|
|
|
|
const value = this.aggregation !== 'count' && this.aggregationColumn ?
|
2017-09-14 21:57:18 +08:00
|
|
|
this.aggregation + '(' + this.aggregationColumn + ')' : 'count(1)';
|
|
|
|
|
|
|
|
// TODO unfiltered will be wrong as filters are already applied at this point
|
2017-09-14 22:08:12 +08:00
|
|
|
const query = searchQueryTpl({
|
2017-09-14 21:57:18 +08:00
|
|
|
searchUnfiltered: filterCategoriesQueryTpl({
|
|
|
|
query: this.query,
|
|
|
|
column: this.column,
|
|
|
|
value: '0',
|
|
|
|
userQuery: escapedUserQuery
|
|
|
|
}),
|
|
|
|
searchFiltered: filterCategoriesQueryTpl({
|
|
|
|
query: this.query,
|
|
|
|
column: this.column,
|
|
|
|
value: value,
|
|
|
|
userQuery: escapedUserQuery
|
|
|
|
})
|
|
|
|
});
|
2016-03-22 20:10:42 +08:00
|
|
|
|
2017-09-14 21:57:18 +08:00
|
|
|
debug(query);
|
2016-03-22 20:10:42 +08:00
|
|
|
|
2017-09-14 21:57:18 +08:00
|
|
|
psql.query(query, function(err, result) {
|
|
|
|
if (err) {
|
|
|
|
return callback(err, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
return callback(null, {type: self.getType(), categories: result.rows });
|
|
|
|
}, true); // use read-only transaction
|
|
|
|
}
|
|
|
|
|
|
|
|
getType () {
|
|
|
|
return TYPE;
|
2016-03-22 20:10:42 +08:00
|
|
|
}
|
|
|
|
|
2017-09-14 21:57:18 +08:00
|
|
|
toString () {
|
|
|
|
return JSON.stringify({
|
|
|
|
_type: TYPE,
|
|
|
|
_query: this.query,
|
|
|
|
_column: this.column,
|
|
|
|
_aggregation: this.aggregation
|
|
|
|
});
|
|
|
|
}
|
2016-03-22 20:10:42 +08:00
|
|
|
};
|