Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Aggregate using
count_distinct
to resolve error
The error got in `mf validate-configs`: > ✖ Breaking issues found when checking semantics of built manifest (ERRORS: 8, FUTURE_ERRORS: 0, WARNINGS: 0) > • ERROR: with metric `mql_to_seller_conversion_rate_1_week_window` - For conversion metrics, the measure must be COUNT/SUM(1)/COUNT_DISTINCT. Measure: mqls is agg type: AggregationType.SUM > • ERROR: with metric `mql_to_seller_conversion_rate_1_week_window` - For conversion metrics, the measure must be COUNT/SUM(1)/COUNT_DISTINCT. Measure: sellers is agg type: AggregationType.SUM > • ERROR: with metric `mql_to_seller_conversion_rate_7_day_window` - For conversion metrics, the measure must be COUNT/SUM(1)/COUNT_DISTINCT. Measure: mqls is agg type: AggregationType.SUM > • ERROR: with metric `mql_to_seller_conversion_rate_7_day_window` - For conversion metrics, the measure must be COUNT/SUM(1)/COUNT_DISTINCT. Measure: sellers is agg type: AggregationType.SUM > • ERROR: with metric `mql_to_seller_conversion_rate_7_day_window_with_filter` - For conversion metrics, the measure must be COUNT/SUM(1)/COUNT_DISTINCT. Measure: mqls is agg type: AggregationType.SUM > • ERROR: with metric `mql_to_seller_conversion_rate_7_day_window_with_filter` - For conversion metrics, the measure must be COUNT/SUM(1)/COUNT_DISTINCT. Measure: sellers is agg type: AggregationType.SUM > • ERROR: with metric `mql_to_seller_conversion_rate_base` - For conversion metrics, the measure must be COUNT/SUM(1)/COUNT_DISTINCT. Measure: mqls is agg type: AggregationType.SUM > • ERROR: with metric `mql_to_seller_conversion_rate_base` - For conversion metrics, the measure must be COUNT/SUM(1)/COUNT_DISTINCT. Measure: sellers is agg type: AggregationType.SUM
- Loading branch information