Filter groupBy query results

    It is essentially the equivalent of the HAVING clause in SQL.

    Apache Druid supports the following types of having clauses.

    Query filter HavingSpecs allow all Druid query filters to be used in the Having part of the query.

    The grammar for a query filter HavingSpec is:

    For example, to use a selector filter:

    1. "queryType": "groupBy",
    2. "dataSource": "sample_datasource",
    3. ...
    4. "having":
    5. {
    6. "type" : "filter",
    7. "filter" : {
    8. "type": "selector",
    9. "dimension" : "<dimension>",
    10. "value" : "<dimension_value>"
    11. }
    12. }
    13. }

    The simplest having clause is a numeric filter. Numeric filters can be used as the base filters for more complex boolean expressions of filters.

    Here’s an example of a having-clause numeric filter:

    1. {
    2. "queryType": "groupBy",
    3. "dataSource": "sample_datasource",
    4. ...
    5. "having":
    6. {
    7. "type": "greaterThan",
    8. "value": <numeric_value>
    9. }
    10. }

    Equal To

    The equalTo filter will match rows with a specific aggregate value. The grammar for an equalTo filter is as follows:

    This is the equivalent of HAVING <aggregate> = <value>.

    Greater Than

    The greaterThan filter will match rows with aggregate values greater than the given value. The grammar for a greaterThan filter is as follows:

    1. {
    2. "queryType": "groupBy",
    3. "dataSource": "sample_datasource",
    4. ...
    5. {
    6. "type": "greaterThan",
    7. "aggregation": "<aggregate_metric>",
    8. "value": <numeric_value>
    9. }
    10. }

    Less Than

    The lessThan filter will match rows with aggregate values less than the specified value. The grammar for a greaterThan filter is as follows:

    1. {
    2. "queryType": "groupBy",
    3. "dataSource": "sample_datasource",
    4. ...
    5. "having":
    6. {
    7. "type": "lessThan",
    8. "aggregation": "<aggregate_metric>",
    9. "value": <numeric_value>
    10. }
    11. }

    This is the equivalent of HAVING <aggregate> < <value>.

    dimSelector

    The dimSelector filter will match rows with dimension values equal to the specified value. The grammar for a dimSelector filter is as follows:

    AND

    The grammar for an AND filter is as follows:

    1. {
    2. "queryType": "groupBy",
    3. "dataSource": "sample_datasource",
    4. ...
    5. "having":
    6. {
    7. "type": "and",
    8. {
    9. "type": "greaterThan",
    10. "value": <numeric_value>
    11. },
    12. {
    13. "type": "lessThan",
    14. "aggregation": "<aggregate_metric>",
    15. "value": <numeric_value>
    16. }
    17. ]
    18. }
    19. }

    OR

    The grammar for an OR filter is as follows:

    1. {
    2. "queryType": "groupBy",
    3. "dataSource": "sample_datasource",
    4. ...
    5. "having":
    6. {
    7. "type": "or",
    8. "havingSpecs": [
    9. {
    10. "type": "greaterThan",
    11. "aggregation": "<aggregate_metric>",
    12. "value": <numeric_value>
    13. },
    14. {
    15. "type": "equalTo",
    16. "aggregation": "<aggregate_metric>",
    17. "value": <numeric_value>
    18. }
    19. ]
    20. }

    NOT