2013-08-28 19:24:34 -04:00
|
|
|
[[search-request-body]]
|
|
|
|
== Request Body Search
|
|
|
|
|
|
|
|
The search request can be executed with a search DSL, which includes the
|
|
|
|
<<query-dsl,Query DSL>>, within its body. Here is an
|
|
|
|
example:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
$ curl -XGET 'http://localhost:9200/twitter/tweet/_search' -d '{
|
|
|
|
"query" : {
|
|
|
|
"term" : { "user" : "kimchy" }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
'
|
|
|
|
--------------------------------------------------
|
|
|
|
|
|
|
|
And here is a sample response:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
{
|
|
|
|
"_shards":{
|
|
|
|
"total" : 5,
|
|
|
|
"successful" : 5,
|
|
|
|
"failed" : 0
|
|
|
|
},
|
|
|
|
"hits":{
|
|
|
|
"total" : 1,
|
|
|
|
"hits" : [
|
|
|
|
{
|
|
|
|
"_index" : "twitter",
|
|
|
|
"_type" : "tweet",
|
2014-01-09 17:20:06 -05:00
|
|
|
"_id" : "1",
|
2013-08-28 19:24:34 -04:00
|
|
|
"_source" : {
|
|
|
|
"user" : "kimchy",
|
|
|
|
"postDate" : "2009-11-15T14:12:12",
|
2014-01-06 15:58:46 -05:00
|
|
|
"message" : "trying out Elasticsearch"
|
2013-08-28 19:24:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
|
|
|
|
|
|
|
[float]
|
|
|
|
=== Parameters
|
|
|
|
|
2014-08-06 05:54:51 -04:00
|
|
|
[horizontal]
|
|
|
|
`timeout`::
|
|
|
|
|
|
|
|
A search timeout, bounding the search request to be executed within the
|
|
|
|
specified time value and bail with the hits accumulated up to that point
|
|
|
|
when expired. Defaults to no timeout. See <<time-units>>.
|
|
|
|
|
|
|
|
`from`::
|
|
|
|
|
|
|
|
The starting from index of the hits to return. Defaults to `0`.
|
|
|
|
|
|
|
|
`size`::
|
|
|
|
|
2015-09-03 03:36:03 -04:00
|
|
|
The number of hits to return. Defaults to `10`. If you do not care about
|
|
|
|
getting some hits back but only about the number of matches and/or
|
|
|
|
aggregations, setting the value to `0` will help performance.
|
2014-08-06 05:54:51 -04:00
|
|
|
|
|
|
|
`search_type`::
|
|
|
|
|
|
|
|
The type of the search operation to perform. Can be
|
2015-08-19 10:43:50 -04:00
|
|
|
`dfs_query_then_fetch` or `query_then_fetch`.
|
2015-05-04 17:48:40 -04:00
|
|
|
Defaults to `query_then_fetch`.
|
|
|
|
See <<search-request-search-type,_Search Type_>> for more.
|
2014-08-06 05:54:51 -04:00
|
|
|
|
2015-07-27 06:59:45 -04:00
|
|
|
`request_cache`::
|
2014-08-06 05:54:51 -04:00
|
|
|
|
2014-09-26 15:04:42 -04:00
|
|
|
Set to `true` or `false` to enable or disable the caching
|
2015-01-14 05:19:32 -05:00
|
|
|
of search results for requests where `size` is 0, ie
|
|
|
|
aggregations and suggestions (no top hits returned).
|
2015-06-26 10:31:38 -04:00
|
|
|
See <<shard-request-cache>>.
|
2014-08-06 05:54:51 -04:00
|
|
|
|
|
|
|
`terminate_after`::
|
|
|
|
|
2015-04-26 12:49:15 -04:00
|
|
|
The maximum number of documents to collect for each shard,
|
2014-08-06 05:54:51 -04:00
|
|
|
upon reaching which the query execution will terminate early. If set, the
|
|
|
|
response will have a boolean field `terminated_early` to indicate whether
|
|
|
|
the query execution has actually terminated_early. Defaults to no
|
|
|
|
terminate_after.
|
|
|
|
|
|
|
|
|
2015-07-27 06:59:45 -04:00
|
|
|
Out of the above, the `search_type` and the `request_cache` must be passed as
|
2014-08-06 05:54:51 -04:00
|
|
|
query-string parameters. The rest of the search request should be passed
|
|
|
|
within the body itself. The body content can also be passed as a REST
|
|
|
|
parameter named `source`.
|
|
|
|
|
|
|
|
Both HTTP GET and HTTP POST can be used to execute search with body. Since not
|
|
|
|
all clients support GET with body, POST is allowed as well.
|
2013-08-28 19:24:34 -04:00
|
|
|
|
|
|
|
|
|
|
|
include::request/query.asciidoc[]
|
|
|
|
|
|
|
|
include::request/from-size.asciidoc[]
|
|
|
|
|
|
|
|
include::request/sort.asciidoc[]
|
|
|
|
|
2013-11-13 10:53:10 -05:00
|
|
|
include::request/source-filtering.asciidoc[]
|
|
|
|
|
2013-08-28 19:24:34 -04:00
|
|
|
include::request/fields.asciidoc[]
|
|
|
|
|
|
|
|
include::request/script-fields.asciidoc[]
|
|
|
|
|
2014-01-09 17:20:06 -05:00
|
|
|
include::request/fielddata-fields.asciidoc[]
|
|
|
|
|
2013-12-16 06:11:06 -05:00
|
|
|
include::request/post-filter.asciidoc[]
|
2013-08-28 19:24:34 -04:00
|
|
|
|
|
|
|
include::request/highlighting.asciidoc[]
|
|
|
|
|
|
|
|
include::request/rescore.asciidoc[]
|
|
|
|
|
|
|
|
include::request/search-type.asciidoc[]
|
|
|
|
|
|
|
|
include::request/scroll.asciidoc[]
|
|
|
|
|
|
|
|
include::request/preference.asciidoc[]
|
|
|
|
|
|
|
|
include::request/explain.asciidoc[]
|
|
|
|
|
|
|
|
include::request/version.asciidoc[]
|
|
|
|
|
|
|
|
include::request/index-boost.asciidoc[]
|
|
|
|
|
|
|
|
include::request/min-score.asciidoc[]
|
|
|
|
|
2013-09-16 05:17:01 -04:00
|
|
|
include::request/named-queries-and-filters.asciidoc[]
|
2014-10-13 03:41:55 -04:00
|
|
|
|
|
|
|
include::request/inner-hits.asciidoc[]
|