Learn R Programming

elastic (version 0.7.8)

search_shards: Search shards.

Description

Search shards.

Usage

search_shards(index = NULL, raw = FALSE, routing = NULL,
  preference = NULL, local = NULL, ...)

Arguments

index

One or more indeces

raw

If TRUE (default), data is parsed to list. If FALSE, then raw JSON.

routing

A character vector of routing values to take into account when determining which shards a request would be executed against.

preference

Controls a preference of which shard replicas to execute the search request on. By default, the operation is randomized between the shard replicas. See preference for a list of all acceptable values.

local

(logical) Whether to read the cluster state locally in order to determine where shards are allocated instead of using the Master node's cluster state.

...

Curl args passed on to GET

References

https://www.elastic.co/guide/en/elasticsearch/reference/current/search-shards.html

Examples

Run this code
# NOT RUN {
search_shards(index = "plos")
search_shards(index = c("plos","gbif"))
search_shards(index = "plos", preference='_primary')
search_shards(index = "plos", preference='_shards:2')

library('httr')
search_shards(index = "plos", config=verbose())
# }

Run the code above in your browser using DataLab