Search queries

A search query returns dimension values that match the search specification.

  1. {
  2. "queryType": "search",
  3. "dataSource": "sample_datasource",
  4. "granularity": "day",
  5. "searchDimensions": [
  6. "dim1",
  7. "dim2"
  8. ],
  9. "query": {
  10. "type": "insensitive_contains",
  11. "value": "Ke"
  12. },
  13. "sort" : {
  14. "type": "lexicographic"
  15. },
  16. "intervals": [
  17. "2013-01-01T00:00:00.000/2013-01-03T00:00:00.000"
  18. ]
  19. }

There are several main parts to a search query:

propertydescriptionrequired?
queryTypeThis String should always be “search”; this is the first thing Apache Druid looks at to figure out how to interpret the query.yes
dataSourceA String or Object defining the data source to query, very similar to a table in a relational database. See DataSource for more information.yes
granularityDefines the granularity of the query. See Granularities.yes
filterSee Filters.no
limitDefines the maximum number per Historical process (parsed as int) of search results to return.no (default to 1000)
intervalsA JSON Object representing ISO-8601 Intervals. This defines the time ranges to run the query over.yes
searchDimensionsThe dimensions to run the search over. Excluding this means the search is run over all dimensions.no
querySee SearchQuerySpec.yes
sortAn object specifying how the results of the search should be sorted.
Possible types are “lexicographic” (the default sort), “alphanumeric”, “strlen”, and “numeric”.
See Sorting Orders for more details.
no
contextSee Contextno

The format of the result is:

  1. [
  2. {
  3. "timestamp": "2013-01-01T00:00:00.000Z",
  4. "result": [
  5. {
  6. "dimension": "dim1",
  7. "value": "Ke$ha",
  8. "count": 3
  9. },
  10. {
  11. "dimension": "dim2",
  12. "value": "Ke$haForPresident",
  13. "count": 1
  14. }
  15. ]
  16. },
  17. {
  18. "timestamp": "2013-01-02T00:00:00.000Z",
  19. "result": [
  20. {
  21. "dimension": "dim1",
  22. "value": "SomethingThatContainsKe",
  23. "count": 1
  24. },
  25. {
  26. "dimension": "dim2",
  27. "value": "SomethingElseThatContainsKe",
  28. "count": 2
  29. }
  30. ]
  31. }
  32. ]

Implementation details

Strategies

Search queries can be executed using two different strategies. The default strategy is determined by the “druid.query.search.searchStrategy” runtime property on the Broker. This can be overridden using “searchStrategy” in the query context. If neither the context field nor the property is set, the “useIndexes” strategy will be used.

  • “useIndexes” strategy, the default, first categorizes search dimensions into two groups according to their support for bitmap indexes. And then, it applies index-only and cursor-based execution plans to the group of dimensions supporting bitmaps and others, respectively. The index-only plan uses only indexes for search query processing. For each dimension, it reads the bitmap index for each dimension value, evaluates the search predicate, and finally checks the time interval and filter predicates. For the cursor-based execution plan, please refer to the “cursorOnly” strategy. The index-only plan shows low performance for the search dimensions of large cardinality which means most values of search dimensions are unique.

  • “cursorOnly” strategy generates a cursor-based execution plan. This plan creates a cursor which reads a row from a queryableIndexSegment, and then evaluates search predicates. If some filters support bitmap indexes, the cursor can read only the rows which satisfy those filters, thereby saving I/O cost. However, it might be slow with filters of low selectivity.

  • “auto” strategy uses a cost-based planner for choosing an optimal search strategy. It estimates the cost of index-only and cursor-based execution plans, and chooses the optimal one. Currently, it is not enabled by default due to the overhead of cost estimation.

Server configuration

The following runtime properties apply:

PropertyDescriptionDefault
druid.query.search.searchStrategyDefault search query strategy.useIndexes

Query context

The following query context parameters apply:

PropertyDescription
searchStrategyOverrides the value of druid.query.search.searchStrategy for this query.