Druid SQL API

Druid SQL - 图1info

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

You can submit and cancel Druid SQL queries using the Druid SQL API. The Druid SQL API is available at https://ROUTER:8888/druid/v2/sql, where ROUTER is the IP address of the Druid Router.

Submit a query

To use the SQL API to make Druid SQL queries, send your query to the Router using the POST method:

  1. POST https://ROUTER:8888/druid/v2/sql/

Submit your query as the value of a “query” field in the JSON object within the request payload. For example:

  1. {"query" : "SELECT COUNT(*) FROM data_source WHERE foo = 'bar'"}

Request body

PropertyDescriptionDefault
querySQL query string.none (required)
resultFormatFormat of query results. See Responses for details.“object”
headerWhether or not to include a header row for the query result. See Responses for details.false
typesHeaderWhether or not to include type information in the header. Can only be set when header is also true. See Responses for details.false
sqlTypesHeaderWhether or not to include SQL type information in the header. Can only be set when header is also true. See Responses for details.false
contextJSON object containing SQL query context parameters.{} (empty)
parametersList of query parameters for parameterized queries. Each parameter in the list should be a JSON object like {“type”: “VARCHAR”, “value”: “foo”}. The type should be a SQL type; see Data types for a list of supported SQL types.[] (empty)

You can use curl to send SQL queries from the command-line:

  1. $ cat query.json
  2. {"query":"SELECT COUNT(*) AS TheCount FROM data_source"}
  3. $ curl -XPOST -H'Content-Type: application/json' http://ROUTER:8888/druid/v2/sql/ -d @query.json
  4. [{"TheCount":24433}]

There are a variety of SQL query context parameters you can provide by adding a “context” map, like:

  1. {
  2. "query" : "SELECT COUNT(*) FROM data_source WHERE foo = 'bar' AND __time > TIMESTAMP '2000-01-01 00:00:00'",
  3. "context" : {
  4. "sqlTimeZone" : "America/Los_Angeles"
  5. }
  6. }

Parameterized SQL queries are also supported:

  1. {
  2. "query" : "SELECT COUNT(*) FROM data_source WHERE foo = ? AND __time > ?",
  3. "parameters": [
  4. { "type": "VARCHAR", "value": "bar"},
  5. { "type": "TIMESTAMP", "value": "2000-01-01 00:00:00" }
  6. ]
  7. }

Metadata is available over HTTP POST by querying metadata tables.

Responses

Result formats

Druid SQL’s HTTP POST API supports a variety of result formats. You can specify these by adding a resultFormat parameter, like:

  1. {
  2. "query" : "SELECT COUNT(*) FROM data_source WHERE foo = 'bar' AND __time > TIMESTAMP '2000-01-01 00:00:00'",
  3. "resultFormat" : "array"
  4. }

To request a header with information about column names, set header to true in your request. When you set header to true, you can optionally include typesHeader and sqlTypesHeader as well, which gives you information about Druid runtime and SQL types respectively. You can request all these headers with a request like:

  1. {
  2. "query" : "SELECT COUNT(*) FROM data_source WHERE foo = 'bar' AND __time > TIMESTAMP '2000-01-01 00:00:00'",
  3. "resultFormat" : "array",
  4. "header" : true,
  5. "typesHeader" : true,
  6. "sqlTypesHeader" : true
  7. }

The following table shows supported result formats:

FormatDescriptionHeader descriptionContent-Type
objectThe default, a JSON array of JSON objects. Each object’s field names match the columns returned by the SQL query, and are provided in the same order as the SQL query.If header is true, the first row is an object where the fields are column names. Each field’s value is either null (if typesHeader and sqlTypesHeader are false) or an object that contains the Druid type as type (if typesHeader is true) and the SQL type as sqlType (if sqlTypesHeader is true).application/json
arrayJSON array of JSON arrays. Each inner array has elements matching the columns returned by the SQL query, in order.If header is true, the first row is an array of column names. If typesHeader is true, the next row is an array of Druid types. If sqlTypesHeader is true, the next row is an array of SQL types.application/json
objectLinesLike object, but the JSON objects are separated by newlines instead of being wrapped in a JSON array. This can make it easier to parse the entire response set as a stream, if you do not have ready access to a streaming JSON parser. To make it possible to detect a truncated response, this format includes a trailer of one blank line.Same as object.text/plain
arrayLinesLike array, but the JSON arrays are separated by newlines instead of being wrapped in a JSON array. This can make it easier to parse the entire response set as a stream, if you do not have ready access to a streaming JSON parser. To make it possible to detect a truncated response, this format includes a trailer of one blank line.Same as array, except the rows are separated by newlines.text/plain
csvComma-separated values, with one row per line. Individual field values may be escaped by being surrounded in double quotes. If double quotes appear in a field value, they will be escaped by replacing them with double-double-quotes like “”this””. To make it possible to detect a truncated response, this format includes a trailer of one blank line.Same as array, except the lists are in CSV format.text/csv

If typesHeader is set to true, Druid type information is included in the response. Complex types, like sketches, will be reported as COMPLEX<typeName> if a particular complex type name is known for that field, or as COMPLEX if the particular type name is unknown or mixed. If sqlTypesHeader is set to true, SQL type information is included in the response. It is possible to set both typesHeader and sqlTypesHeader at once. Both parameters require that header is also set.

To aid in building clients that are compatible with older Druid versions, Druid returns the HTTP header X-Druid-SQL-Header-Included: yes if header was set to true and if the version of Druid the client is connected to understands the typesHeader and sqlTypesHeader parameters. This HTTP response header is present irrespective of whether typesHeader or sqlTypesHeader are set or not.

Druid returns the SQL query identifier in the X-Druid-SQL-Query-Id HTTP header. This query id will be assigned the value of sqlQueryId from the query context parameters if specified, else Druid will generate a SQL query id for you.

Errors

Errors that occur before the response body is sent will be reported in JSON, with an HTTP 500 status code, in the same format as native Druid query errors. If an error occurs while the response body is being sent, at that point it is too late to change the HTTP status code or report a JSON error, so the response will simply end midstream and an error will be logged by the Druid server that was handling your request.

As a caller, it is important that you properly handle response truncation. This is easy for the object and array formats, since truncated responses will be invalid JSON. For the line-oriented formats, you should check the trailer they all include: one blank line at the end of the result set. If you detect a truncated response, either through a JSON parsing error or through a missing trailing newline, you should assume the response was not fully delivered due to an error.

Cancel a query

You can use the HTTP DELETE method to cancel a SQL query on either the Router or the Broker. When you cancel a query, Druid handles the cancellation in a best-effort manner. It marks the query canceled immediately and aborts the query execution as soon as possible. However, your query may run for a short time after your cancellation request.

Druid SQL’s HTTP DELETE method uses the following syntax:

  1. DELETE https://ROUTER:8888/druid/v2/sql/{sqlQueryId}

The DELETE method requires the sqlQueryId path parameter. To predict the query id you must set it in the query context. Druid does not enforce unique sqlQueryId in the query context. If you issue a cancel request for a sqlQueryId active in more than one query context, Druid cancels all requests that use the query id.

For example if you issue the following query:

  1. curl --request POST 'https://ROUTER:8888/druid/v2/sql' \
  2. --header 'Content-Type: application/json' \
  3. --data-raw '{"query" : "SELECT sleep(CASE WHEN sum_added > 0 THEN 1 ELSE 0 END) FROM wikiticker WHERE sum_added > 0 LIMIT 15",
  4. "context" : {"sqlQueryId" : "myQuery01"}}'

You can cancel the query using the query id myQuery01 as follows:

  1. curl --request DELETE 'https://ROUTER:8888/druid/v2/sql/myQuery01' \

Cancellation requests require READ permission on all resources used in the SQL query.

Druid returns an HTTP 202 response for successful deletion requests.

Druid returns an HTTP 404 response in the following cases:

  • sqlQueryId is incorrect.
  • The query completes before your cancellation request is processed.

Druid returns an HTTP 403 response for authorization failure.

Query from deep storage

Query from deep storage is an experimental feature.

You can use the sql/statements endpoint to query segments that exist only in deep storage and are not loaded onto your Historical processes as determined by your load rules.

Note that at least one segment of a datasource must be available on a Historical process so that the Broker can plan your query. A quick way to check if this is true is whether or not a datasource is visible in the Druid console.

For more information, see Query from deep storage.

Submit a query

Submit a query for data stored in deep storage. Any data ingested into Druid is placed into deep storage. The query is contained in the “query” field in the JSON object within the request payload.

Note that at least part of a datasource must be available on a Historical process so that Druid can plan your query and only the user who submits a query can see the results.

URL

POST /druid/v2/sql/statements

Request body

Generally, the sql and sql/statements endpoints support the same response body fields with minor differences. For general information about the available fields, see Submit a query to the sql endpoint.

Keep the following in mind when submitting queries to the sql/statements endpoint:

  • There are additional context parameters for sql/statements:

    • executionMode determines how query results are fetched. Druid currently only supports ASYNC. You must manually retrieve your results after the query completes.
    • selectDestination determines where final results get written. By default, results are written to task reports. Set this parameter to durableStorage to instruct Druid to write the results from SELECT queries to durable storage, which allows you to fetch larger result sets. Note that this requires you to have durable storage for MSQ enabled.
  • The only supported value for resultFormat is JSON LINES.

Responses

  • 200 SUCCESS
  • 400 BAD REQUEST

Successfully queried from deep storage

Error thrown due to bad query. Returns a JSON object detailing the error with the following format:

  1. {
  2. "error": "Summary of the encountered error.",
  3. "errorClass": "Class of exception that caused this error.",
  4. "host": "The host on which the error occurred.",
  5. "errorCode": "Well-defined error code.",
  6. "persona": "Role or persona associated with the error.",
  7. "category": "Classification of the error.",
  8. "errorMessage": "Summary of the encountered issue with expanded information.",
  9. "context": "Additional context about the error."
  10. }

Sample request

  • cURL
  • HTTP
  1. curl "http://ROUTER_IP:ROUTER_PORT/druid/v2/sql/statements" \
  2. --header 'Content-Type: application/json' \
  3. --data '{
  4. "query": "SELECT * FROM wikipedia WHERE user='\''BlueMoon2662'\''",
  5. "context": {
  6. "executionMode":"ASYNC"
  7. }
  8. }'
  1. POST /druid/v2/sql/statements HTTP/1.1
  2. Host: http://ROUTER_IP:ROUTER_PORT
  3. Content-Type: application/json
  4. Content-Length: 134
  5. {
  6. "query": "SELECT * FROM wikipedia WHERE user='BlueMoon2662'",
  7. "context": {
  8. "executionMode":"ASYNC"
  9. }
  10. }

Sample response

Click to show sample response

  1. {
  2. "queryId": "query-b82a7049-b94f-41f2-a230-7fef94768745",
  3. "state": "ACCEPTED",
  4. "createdAt": "2023-07-26T21:16:25.324Z",
  5. "schema": [
  6. {
  7. "name": "__time",
  8. "type": "TIMESTAMP",
  9. "nativeType": "LONG"
  10. },
  11. {
  12. "name": "channel",
  13. "type": "VARCHAR",
  14. "nativeType": "STRING"
  15. },
  16. {
  17. "name": "cityName",
  18. "type": "VARCHAR",
  19. "nativeType": "STRING"
  20. },
  21. {
  22. "name": "comment",
  23. "type": "VARCHAR",
  24. "nativeType": "STRING"
  25. },
  26. {
  27. "name": "countryIsoCode",
  28. "type": "VARCHAR",
  29. "nativeType": "STRING"
  30. },
  31. {
  32. "name": "countryName",
  33. "type": "VARCHAR",
  34. "nativeType": "STRING"
  35. },
  36. {
  37. "name": "isAnonymous",
  38. "type": "BIGINT",
  39. "nativeType": "LONG"
  40. },
  41. {
  42. "name": "isMinor",
  43. "type": "BIGINT",
  44. "nativeType": "LONG"
  45. },
  46. {
  47. "name": "isNew",
  48. "type": "BIGINT",
  49. "nativeType": "LONG"
  50. },
  51. {
  52. "name": "isRobot",
  53. "type": "BIGINT",
  54. "nativeType": "LONG"
  55. },
  56. {
  57. "name": "isUnpatrolled",
  58. "type": "BIGINT",
  59. "nativeType": "LONG"
  60. },
  61. {
  62. "name": "metroCode",
  63. "type": "BIGINT",
  64. "nativeType": "LONG"
  65. },
  66. {
  67. "name": "namespace",
  68. "type": "VARCHAR",
  69. "nativeType": "STRING"
  70. },
  71. {
  72. "name": "page",
  73. "type": "VARCHAR",
  74. "nativeType": "STRING"
  75. },
  76. {
  77. "name": "regionIsoCode",
  78. "type": "VARCHAR",
  79. "nativeType": "STRING"
  80. },
  81. {
  82. "name": "regionName",
  83. "type": "VARCHAR",
  84. "nativeType": "STRING"
  85. },
  86. {
  87. "name": "user",
  88. "type": "VARCHAR",
  89. "nativeType": "STRING"
  90. },
  91. {
  92. "name": "delta",
  93. "type": "BIGINT",
  94. "nativeType": "LONG"
  95. },
  96. {
  97. "name": "added",
  98. "type": "BIGINT",
  99. "nativeType": "LONG"
  100. },
  101. {
  102. "name": "deleted",
  103. "type": "BIGINT",
  104. "nativeType": "LONG"
  105. }
  106. ],
  107. "durationMs": -1
  108. }

Get query status

Retrieves information about the query associated with the given query ID. The response matches the response from the POST API if the query is accepted or running and the execution mode is ASYNC. In addition to the fields that this endpoint shares with POST /sql/statements, a completed query’s status includes the following:

  • A result object that summarizes information about your results, such as the total number of rows and sample records.
  • A pages object that includes the following information for each page of results:
    • numRows: the number of rows in that page of results.
    • sizeInBytes: the size of the page.
    • id: the page number that you can use to reference a specific page when you get query results.

URL

GET /druid/v2/sql/statements/:queryId

Responses

  • 200 SUCCESS
  • 400 BAD REQUEST

Successfully retrieved query status

Error thrown due to bad query. Returns a JSON object detailing the error with the following format:

  1. {
  2. "error": "Summary of the encountered error.",
  3. "errorCode": "Well-defined error code.",
  4. "persona": "Role or persona associated with the error.",
  5. "category": "Classification of the error.",
  6. "errorMessage": "Summary of the encountered issue with expanded information.",
  7. "context": "Additional context about the error."
  8. }

Sample request

The following example retrieves the status of a query with specified ID query-9b93f6f7-ab0e-48f5-986a-3520f84f0804.

  • cURL
  • HTTP
  1. curl "http://ROUTER_IP:ROUTER_PORT/druid/v2/sql/statements/query-9b93f6f7-ab0e-48f5-986a-3520f84f0804"
  1. GET /druid/v2/sql/statements/query-9b93f6f7-ab0e-48f5-986a-3520f84f0804 HTTP/1.1
  2. Host: http://ROUTER_IP:ROUTER_PORT

Sample response

Click to show sample response

  1. {
  2. "queryId": "query-9b93f6f7-ab0e-48f5-986a-3520f84f0804",
  3. "state": "SUCCESS",
  4. "createdAt": "2023-07-26T22:57:46.620Z",
  5. "schema": [
  6. {
  7. "name": "__time",
  8. "type": "TIMESTAMP",
  9. "nativeType": "LONG"
  10. },
  11. {
  12. "name": "channel",
  13. "type": "VARCHAR",
  14. "nativeType": "STRING"
  15. },
  16. {
  17. "name": "cityName",
  18. "type": "VARCHAR",
  19. "nativeType": "STRING"
  20. },
  21. {
  22. "name": "comment",
  23. "type": "VARCHAR",
  24. "nativeType": "STRING"
  25. },
  26. {
  27. "name": "countryIsoCode",
  28. "type": "VARCHAR",
  29. "nativeType": "STRING"
  30. },
  31. {
  32. "name": "countryName",
  33. "type": "VARCHAR",
  34. "nativeType": "STRING"
  35. },
  36. {
  37. "name": "isAnonymous",
  38. "type": "BIGINT",
  39. "nativeType": "LONG"
  40. },
  41. {
  42. "name": "isMinor",
  43. "type": "BIGINT",
  44. "nativeType": "LONG"
  45. },
  46. {
  47. "name": "isNew",
  48. "type": "BIGINT",
  49. "nativeType": "LONG"
  50. },
  51. {
  52. "name": "isRobot",
  53. "type": "BIGINT",
  54. "nativeType": "LONG"
  55. },
  56. {
  57. "name": "isUnpatrolled",
  58. "type": "BIGINT",
  59. "nativeType": "LONG"
  60. },
  61. {
  62. "name": "metroCode",
  63. "type": "BIGINT",
  64. "nativeType": "LONG"
  65. },
  66. {
  67. "name": "namespace",
  68. "type": "VARCHAR",
  69. "nativeType": "STRING"
  70. },
  71. {
  72. "name": "page",
  73. "type": "VARCHAR",
  74. "nativeType": "STRING"
  75. },
  76. {
  77. "name": "regionIsoCode",
  78. "type": "VARCHAR",
  79. "nativeType": "STRING"
  80. },
  81. {
  82. "name": "regionName",
  83. "type": "VARCHAR",
  84. "nativeType": "STRING"
  85. },
  86. {
  87. "name": "user",
  88. "type": "VARCHAR",
  89. "nativeType": "STRING"
  90. },
  91. {
  92. "name": "delta",
  93. "type": "BIGINT",
  94. "nativeType": "LONG"
  95. },
  96. {
  97. "name": "added",
  98. "type": "BIGINT",
  99. "nativeType": "LONG"
  100. },
  101. {
  102. "name": "deleted",
  103. "type": "BIGINT",
  104. "nativeType": "LONG"
  105. }
  106. ],
  107. "durationMs": 25591,
  108. "result": {
  109. "numTotalRows": 1,
  110. "totalSizeInBytes": 375,
  111. "dataSource": "__query_select",
  112. "sampleRecords": [
  113. [
  114. 1442018873259,
  115. "#ja.wikipedia",
  116. "",
  117. "/* 対戦通算成績と得失点 */",
  118. "",
  119. "",
  120. 0,
  121. 1,
  122. 0,
  123. 0,
  124. 0,
  125. 0,
  126. "Main",
  127. "アルビレックス新潟の年度別成績一覧",
  128. "",
  129. "",
  130. "BlueMoon2662",
  131. 14,
  132. 14,
  133. 0
  134. ]
  135. ],
  136. "pages": [
  137. {
  138. "id": 0,
  139. "numRows": 1,
  140. "sizeInBytes": 375
  141. }
  142. ]
  143. }
  144. }

Get query results

Retrieves results for completed queries. Results are separated into pages, so you can use the optional page parameter to refine the results you get. Druid returns information about the composition of each page and its page number (id). For information about pages, see Get query status.

If a page number isn’t passed, all results are returned sequentially in the same response. If you have large result sets, you may encounter timeouts based on the value configured for druid.router.http.readTimeout.

When getting query results, keep the following in mind:

  • JSON Lines is the only supported result format.
  • Getting the query results for an ingestion query returns an empty response.

URL

GET /druid/v2/sql/statements/:queryId/results

Query parameters

  • page
    • Int (optional)
    • Refine paginated results

Responses

  • 200 SUCCESS
  • 400 BAD REQUEST
  • 404 NOT FOUND
  • 500 SERVER ERROR

Successfully retrieved query results

Query in progress. Returns a JSON object detailing the error with the following format:

  1. {
  2. "error": "Summary of the encountered error.",
  3. "errorCode": "Well-defined error code.",
  4. "persona": "Role or persona associated with the error.",
  5. "category": "Classification of the error.",
  6. "errorMessage": "Summary of the encountered issue with expanded information.",
  7. "context": "Additional context about the error."
  8. }

Query not found, failed or canceled

Error thrown due to bad query. Returns a JSON object detailing the error with the following format:

  1. {
  2. "error": "Summary of the encountered error.",
  3. "errorCode": "Well-defined error code.",
  4. "persona": "Role or persona associated with the error.",
  5. "category": "Classification of the error.",
  6. "errorMessage": "Summary of the encountered issue with expanded information.",
  7. "context": "Additional context about the error."
  8. }

Sample request

The following example retrieves the status of a query with specified ID query-f3bca219-173d-44d4-bdc7-5002e910352f.

  • cURL
  • HTTP
  1. curl "http://ROUTER_IP:ROUTER_PORT/druid/v2/sql/statements/query-f3bca219-173d-44d4-bdc7-5002e910352f/results"
  1. GET /druid/v2/sql/statements/query-f3bca219-173d-44d4-bdc7-5002e910352f/results HTTP/1.1
  2. Host: http://ROUTER_IP:ROUTER_PORT

Sample response

Click to show sample response

  1. [
  2. {
  3. "__time": 1442018818771,
  4. "channel": "#en.wikipedia",
  5. "cityName": "",
  6. "comment": "added project",
  7. "countryIsoCode": "",
  8. "countryName": "",
  9. "isAnonymous": 0,
  10. "isMinor": 0,
  11. "isNew": 0,
  12. "isRobot": 0,
  13. "isUnpatrolled": 0,
  14. "metroCode": 0,
  15. "namespace": "Talk",
  16. "page": "Talk:Oswald Tilghman",
  17. "regionIsoCode": "",
  18. "regionName": "",
  19. "user": "GELongstreet",
  20. "delta": 36,
  21. "added": 36,
  22. "deleted": 0
  23. },
  24. {
  25. "__time": 1442018820496,
  26. "channel": "#ca.wikipedia",
  27. "cityName": "",
  28. "comment": "Robot inserta {{Commonscat}} que enllaça amb [[commons:category:Rallicula]]",
  29. "countryIsoCode": "",
  30. "countryName": "",
  31. "isAnonymous": 0,
  32. "isMinor": 1,
  33. "isNew": 0,
  34. "isRobot": 1,
  35. "isUnpatrolled": 0,
  36. "metroCode": 0,
  37. "namespace": "Main",
  38. "page": "Rallicula",
  39. "regionIsoCode": "",
  40. "regionName": "",
  41. "user": "PereBot",
  42. "delta": 17,
  43. "added": 17,
  44. "deleted": 0
  45. },
  46. {
  47. "__time": 1442018825474,
  48. "channel": "#en.wikipedia",
  49. "cityName": "Auburn",
  50. "comment": "/* Status of peremptory norms under international law */ fixed spelling of 'Wimbledon'",
  51. "countryIsoCode": "AU",
  52. "countryName": "Australia",
  53. "isAnonymous": 1,
  54. "isMinor": 0,
  55. "isNew": 0,
  56. "isRobot": 0,
  57. "isUnpatrolled": 0,
  58. "metroCode": 0,
  59. "namespace": "Main",
  60. "page": "Peremptory norm",
  61. "regionIsoCode": "NSW",
  62. "regionName": "New South Wales",
  63. "user": "60.225.66.142",
  64. "delta": 0,
  65. "added": 0,
  66. "deleted": 0
  67. },
  68. {
  69. "__time": 1442018828770,
  70. "channel": "#vi.wikipedia",
  71. "cityName": "",
  72. "comment": "fix Lỗi CS1: ngày tháng",
  73. "countryIsoCode": "",
  74. "countryName": "",
  75. "isAnonymous": 0,
  76. "isMinor": 1,
  77. "isNew": 0,
  78. "isRobot": 1,
  79. "isUnpatrolled": 0,
  80. "metroCode": 0,
  81. "namespace": "Main",
  82. "page": "Apamea abruzzorum",
  83. "regionIsoCode": "",
  84. "regionName": "",
  85. "user": "Cheers!-bot",
  86. "delta": 18,
  87. "added": 18,
  88. "deleted": 0
  89. },
  90. {
  91. "__time": 1442018831862,
  92. "channel": "#vi.wikipedia",
  93. "cityName": "",
  94. "comment": "clean up using [[Project:AWB|AWB]]",
  95. "countryIsoCode": "",
  96. "countryName": "",
  97. "isAnonymous": 0,
  98. "isMinor": 0,
  99. "isNew": 0,
  100. "isRobot": 1,
  101. "isUnpatrolled": 0,
  102. "metroCode": 0,
  103. "namespace": "Main",
  104. "page": "Atractus flammigerus",
  105. "regionIsoCode": "",
  106. "regionName": "",
  107. "user": "ThitxongkhoiAWB",
  108. "delta": 18,
  109. "added": 18,
  110. "deleted": 0
  111. },
  112. {
  113. "__time": 1442018833987,
  114. "channel": "#vi.wikipedia",
  115. "cityName": "",
  116. "comment": "clean up using [[Project:AWB|AWB]]",
  117. "countryIsoCode": "",
  118. "countryName": "",
  119. "isAnonymous": 0,
  120. "isMinor": 0,
  121. "isNew": 0,
  122. "isRobot": 1,
  123. "isUnpatrolled": 0,
  124. "metroCode": 0,
  125. "namespace": "Main",
  126. "page": "Agama mossambica",
  127. "regionIsoCode": "",
  128. "regionName": "",
  129. "user": "ThitxongkhoiAWB",
  130. "delta": 18,
  131. "added": 18,
  132. "deleted": 0
  133. },
  134. {
  135. "__time": 1442018837009,
  136. "channel": "#ca.wikipedia",
  137. "cityName": "",
  138. "comment": "/* Imperi Austrohongarès */",
  139. "countryIsoCode": "",
  140. "countryName": "",
  141. "isAnonymous": 0,
  142. "isMinor": 0,
  143. "isNew": 0,
  144. "isRobot": 0,
  145. "isUnpatrolled": 0,
  146. "metroCode": 0,
  147. "namespace": "Main",
  148. "page": "Campanya dels Balcans (1914-1918)",
  149. "regionIsoCode": "",
  150. "regionName": "",
  151. "user": "Jaumellecha",
  152. "delta": -20,
  153. "added": 0,
  154. "deleted": 20
  155. },
  156. {
  157. "__time": 1442018839591,
  158. "channel": "#en.wikipedia",
  159. "cityName": "",
  160. "comment": "adding comment on notability and possible COI",
  161. "countryIsoCode": "",
  162. "countryName": "",
  163. "isAnonymous": 0,
  164. "isMinor": 0,
  165. "isNew": 1,
  166. "isRobot": 0,
  167. "isUnpatrolled": 1,
  168. "metroCode": 0,
  169. "namespace": "Talk",
  170. "page": "Talk:Dani Ploeger",
  171. "regionIsoCode": "",
  172. "regionName": "",
  173. "user": "New Media Theorist",
  174. "delta": 345,
  175. "added": 345,
  176. "deleted": 0
  177. },
  178. {
  179. "__time": 1442018841578,
  180. "channel": "#en.wikipedia",
  181. "cityName": "",
  182. "comment": "Copying assessment table to wiki",
  183. "countryIsoCode": "",
  184. "countryName": "",
  185. "isAnonymous": 0,
  186. "isMinor": 0,
  187. "isNew": 0,
  188. "isRobot": 1,
  189. "isUnpatrolled": 0,
  190. "metroCode": 0,
  191. "namespace": "User",
  192. "page": "User:WP 1.0 bot/Tables/Project/Pubs",
  193. "regionIsoCode": "",
  194. "regionName": "",
  195. "user": "WP 1.0 bot",
  196. "delta": 121,
  197. "added": 121,
  198. "deleted": 0
  199. },
  200. {
  201. "__time": 1442018845821,
  202. "channel": "#vi.wikipedia",
  203. "cityName": "",
  204. "comment": "clean up using [[Project:AWB|AWB]]",
  205. "countryIsoCode": "",
  206. "countryName": "",
  207. "isAnonymous": 0,
  208. "isMinor": 0,
  209. "isNew": 0,
  210. "isRobot": 1,
  211. "isUnpatrolled": 0,
  212. "metroCode": 0,
  213. "namespace": "Main",
  214. "page": "Agama persimilis",
  215. "regionIsoCode": "",
  216. "regionName": "",
  217. "user": "ThitxongkhoiAWB",
  218. "delta": 18,
  219. "added": 18,
  220. "deleted": 0
  221. }
  222. ]

Cancel a query

Cancels a running or accepted query.

URL

DELETE /druid/v2/sql/statements/:queryId

Responses

  • 200 OK
  • 202 ACCEPTED
  • 404 SERVER ERROR

A no op operation since the query is not in a state to be cancelled

Successfully accepted query for cancellation

Invalid query ID. Returns a JSON object detailing the error with the following format:

  1. {
  2. "error": "Summary of the encountered error.",
  3. "errorCode": "Well-defined error code.",
  4. "persona": "Role or persona associated with the error.",
  5. "category": "Classification of the error.",
  6. "errorMessage": "Summary of the encountered issue with expanded information.",
  7. "context": "Additional context about the error."
  8. }

Sample request

The following example cancels a query with specified ID query-945c9633-2fa2-49ab-80ae-8221c38c024da.

  • cURL
  • HTTP
  1. curl --request DELETE "http://ROUTER_IP:ROUTER_PORT/druid/v2/sql/statements/query-945c9633-2fa2-49ab-80ae-8221c38c024da"
  1. DELETE /druid/v2/sql/statements/query-945c9633-2fa2-49ab-80ae-8221c38c024da HTTP/1.1
  2. Host: http://ROUTER_IP:ROUTER_PORT

Sample response

A successful request returns a 202 ACCEPTED response and an empty response.