Native queries

Apache Druid supports two query languages: Druid SQL and native queries. Druid SQL queries are planned into native queries. This document describes the native query language.

Native queries in Druid are JSON objects and are typically issued to the Broker or Router processes. Queries can be posted like this:

  1. curl -X POST '<queryable_host>:<port>/druid/v2/?pretty' -H 'Content-Type:application/json' -H 'Accept:application/json' -d @<query_json_file>

Druid’s native query language is JSON over HTTP, although many members of the community have contributed different client libraries in other languages to query Druid.

The Content-Type/Accept Headers can also take ‘application/x-jackson-smile’.

  1. curl -X POST '<queryable_host>:<port>/druid/v2/?pretty' -H 'Content-Type:application/json' -H 'Accept:application/x-jackson-smile' -d @<query_json_file>

Note: If Accept header is not provided, it defaults to value of ‘Content-Type’ header.

Druid’s native query is relatively low level, mapping closely to how computations are performed internally. Druid queries are designed to be lightweight and complete very quickly. This means that for more complex analysis, or to build more complex visualizations, multiple Druid queries may be required.

Even though queries are typically made to Brokers or Routers, they can also be accepted by Historical processes and by Peons (task JVMs)) that are running stream ingestion tasks. This may be valuable if you want to query results for specific segments that are served by specific processes.

Available queries

Druid has numerous query types for various use cases. Queries are composed of various JSON properties and Druid has different types of queries for different use cases. The documentation for the various query types describe all the JSON properties that can be set.

Aggregation queries

Metadata queries

Search queries

Which query should I use?

Where possible, we recommend using Timeseries and TopN queries instead of GroupBy. GroupBy is the most flexible Druid query, but also has the poorest performance. Timeseries are significantly faster than groupBy queries for aggregations that don’t require grouping over dimensions. For grouping and sorting over a single dimension, topN queries are much more optimized than groupBys.

Query cancellation

Queries can be cancelled explicitly using their unique identifier. If the query identifier is set at the time of query, or is otherwise known, the following endpoint can be used on the Broker or Router to cancel the query.

  1. DELETE /druid/v2/{queryId}

For example, if the query ID is abc123, the query can be cancelled as follows:

  1. curl -X DELETE "http://host:port/druid/v2/abc123"

Query errors

If a query fails, you will get an HTTP 500 response containing a JSON object with the following structure:

  1. {
  2. "error" : "Query timeout",
  3. "errorMessage" : "Timeout waiting for task.",
  4. "errorClass" : "java.util.concurrent.TimeoutException",
  5. "host" : "druid1.example.com:8083"
  6. }

The fields in the response are:

fielddescription
errorA well-defined error code (see below).
errorMessageA free-form message with more information about the error. May be null.
errorClassThe class of the exception that caused this error. May be null.
hostThe host on which this error occurred. May be null.

Possible codes for the error field include:

codedescription
Query timeoutThe query timed out.
Query interruptedThe query was interrupted, possibly due to JVM shutdown.
Query cancelledThe query was cancelled through the query cancellation API.
Resource limit exceededThe query exceeded a configured resource limit (e.g. groupBy maxResults).
Unauthorized request.The query was denied due to security policy. Either the user was not recognized, or the user was recognized but does not have access to the requested resource.
Unsupported operationThe query attempted to perform an unsupported operation. This may occur when using undocumented features or when using an incompletely implemented extension.
Unknown exceptionSome other exception occurred. Check errorMessage and errorClass for details, although keep in mind that the contents of those fields are free-form and may change from release to release.