2.4 KiB
layout |
---|
doc_page |
#Query Filters A filter is a JSON object indicating which rows of data should be included in the computation for a query. It’s essentially the equivalent of the WHERE clause in SQL. Druid supports the following types of filters.
Selector filter
The simplest filter is a selector filter. The selector filter will match a specific dimension with a specific value. Selector filters can be used as the base filters for more complex Boolean expressions of filters.
The grammar for a SELECTOR filter is as follows:
"filter": { "type": "selector", "dimension": <dimension_string>, "value": <dimension_value_string> }
This is the equivalent of WHERE <dimension_string> = '<dimension_value_string>'
.
Regular expression filter
The regular expression filter is similar to the selector filter, but using regular expressions. It matches the specified dimension with the given pattern. The pattern can be any standard Java regular expression.
"filter": { "type": "regex", "dimension": <dimension_string>, "pattern": <pattern_string> }
Logical expression filters
AND
The grammar for an AND filter is as follows:
"filter": { "type": "and", "fields": [<filter>, <filter>, ...] }
The filters in fields can be any other filter defined on this page.
OR
The grammar for an OR filter is as follows:
"filter": { "type": "or", "fields": [<filter>, <filter>, ...] }
The filters in fields can be any other filter defined on this page.
NOT
The grammar for a NOT filter is as follows:
"filter": { "type": "not", "field": <filter> }
The filter specified at field can be any other filter defined on this page.
JavaScript filter
The JavaScript filter matches a dimension against the specified JavaScript function predicate. The filter matches values for which the function returns true.
The function takes a single argument, the dimension value, and returns either true or false.
{
"type" : "javascript",
"dimension" : <dimension_string>,
"function" : "function(value) { <...> }"
}
Example
The following matches any dimension values for the dimension name
between 'bar'
and 'foo'
{
"type" : "javascript",
"dimension" : "name",
"function" : "function(x) { return(x >= 'bar' && x <= 'foo') }"
}