uri-request.asciidoc 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. [[search-uri-request]]
  2. == URI Search
  3. A search request can be executed purely using a URI by providing request
  4. parameters. Not all search options are exposed when executing a search
  5. using this mode, but it can be handy for quick "curl tests". Here is an
  6. example:
  7. [source,js]
  8. --------------------------------------------------
  9. $ curl -XGET 'http://localhost:9200/twitter/tweet/_search?q=user:kimchy'
  10. --------------------------------------------------
  11. And here is a sample response:
  12. [source,js]
  13. --------------------------------------------------
  14. {
  15. "_shards":{
  16. "total" : 5,
  17. "successful" : 5,
  18. "failed" : 0
  19. },
  20. "hits":{
  21. "total" : 1,
  22. "hits" : [
  23. {
  24. "_index" : "twitter",
  25. "_type" : "tweet",
  26. "_id" : "1",
  27. "_source" : {
  28. "user" : "kimchy",
  29. "postDate" : "2009-11-15T14:12:12",
  30. "message" : "trying out Elasticsearch"
  31. }
  32. }
  33. ]
  34. }
  35. }
  36. --------------------------------------------------
  37. [float]
  38. === Parameters
  39. The parameters allowed in the URI are:
  40. [cols="<,<",options="header",]
  41. |=======================================================================
  42. |Name |Description
  43. |`q` |The query string (maps to the `query_string` query, see
  44. <<query-dsl-query-string-query,_Query String
  45. Query_>> for more details).
  46. |`df` |The default field to use when no field prefix is defined within the
  47. query.
  48. |`analyzer` |The analyzer name to be used when analyzing the query string.
  49. |`lowercase_expanded_terms` |Should terms be automatically lowercased or
  50. not. Defaults to `true`.
  51. |`analyze_wildcard` |Should wildcard and prefix queries be analyzed or
  52. not. Defaults to `false`.
  53. |`default_operator` |The default operator to be used, can be `AND` or
  54. `OR`. Defaults to `OR`.
  55. |`lenient` |If set to true will cause format based failures (like
  56. providing text to a numeric field) to be ignored. Defaults to false.
  57. |`explain` |For each hit, contain an explanation of how scoring of the
  58. hits was computed.
  59. |`_source`|Set to `false` to disable retrieval of the `_source` field. You can also retrieve
  60. part of the document by using `_source_include` & `_source_exclude` (see the <<search-request-source-filtering, request body>>
  61. documentation for more details)
  62. |`fields` |The selective stored fields of the document to return for each hit,
  63. comma delimited. Not specifying any value will cause no fields to return.
  64. |`sort` |Sorting to perform. Can either be in the form of `fieldName`, or
  65. `fieldName:asc`/`fieldName:desc`. The fieldName can either be an actual
  66. field within the document, or the special `_score` name to indicate
  67. sorting based on scores. There can be several `sort` parameters (order
  68. is important).
  69. |`track_scores` |When sorting, set to `true` in order to still track
  70. scores and return them as part of each hit.
  71. |`timeout` |A search timeout, bounding the search request to be executed
  72. within the specified time value and bail with the hits accumulated up to
  73. that point when expired. Defaults to no timeout.
  74. |`terminate_after` |experimental[The API for this feature may change in the future]
  75. The maximum number of documents to collect for
  76. each shard, upon reaching which the query execution will terminate early.
  77. If set, the response will have a boolean field `terminated_early` to
  78. indicate whether the query execution has actually terminated_early.
  79. Defaults to no terminate_after.
  80. |`from` |The starting from index of the hits to return. Defaults to `0`.
  81. |`size` |The number of hits to return. Defaults to `10`.
  82. |`search_type` |The type of the search operation to perform. Can be
  83. `dfs_query_then_fetch`, `query_then_fetch`, `scan` or `count`
  84. deprecated[2.0.0-beta1,Replaced by `size: 0`]. Defaults to `query_then_fetch`. See
  85. <<search-request-search-type,_Search Type_>> for
  86. more details on the different types of search that can be performed.
  87. |=======================================================================