msearch: Multi-search

Description Usage Arguments Details See Also Examples

View source: R/msearch.R

Description

Performs multiple searches, defined in a file

Usage

1
msearch(conn, x, raw = FALSE, asdf = FALSE, ...)

Arguments

conn

an Elasticsearch connection object, see connect()

x

(character) A file path

raw

(logical) Get raw JSON back or not.

asdf

(logical) If TRUE, use jsonlite::fromJSON() to parse JSON directly to a data.frame. If FALSE (Default), list output is given.

...

Curl args passed on to crul::verb-POST

Details

This function behaves similarly to docs_bulk() - performs searches based on queries defined in a file.

See Also

Search_uri() Search()

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
## Not run: 
x <- connect()

msearch1 <- system.file("examples", "msearch_eg1.json", package = "elastic")
readLines(msearch1)
msearch(x, msearch1)

tf <- tempfile(fileext = ".json")
cat('{"index" : "shakespeare"}', file = tf, sep = "\n")
cat('{"query" : {"match_all" : {}}, "from" : 0, "size" : 5}',  sep = "\n",
   file = tf, append = TRUE)
readLines(tf)
msearch(x, tf)

## End(Not run)

elastic documentation built on March 17, 2021, 1:07 a.m.

Related to msearch in elastic...