elastic_responses
A crate to handle parsing and handling Elasticsearch search results which provides convenient iterators to step through the results returned. It is designed to work with elastic-reqwest
.
Platform | Channel | Status
------------- | ------------- | -------------
Linux / OSX | Stable / Nightly |
Version | Docs
------------- | -------------
master
|
current
|
Cargo.toml
[dependencies]
elastic_reqwest = "*"
elastic_responses = "*"
Query your Elasticsearch Cluster, then iterate through the results:
``rust
// Send a request (omitted, see
samples/basic`, and read the response.
let mut res = client.elasticreq(¶ms, SearchRequest::forindex("_all", body)).unwrap();
// Parse body to JSON
let bodyasjson = parse::
// Use hits() or aggs() iterators // Hits for hit in bodyasjson.hits() { println!("{:?}", hit); }
// Agregations for agg in bodyasjson.aggs() { println!("{:?}", agg); } ```
Bulk response operations are split by whether they succeeded or failed:
``rust
// Send a request (omitted, see
samples/bulk`, and read the response.
let mut res = client.elastic_req(¶ms, BulkRequest::new(body)).unwrap();
// Parse body to JSON
let bodyasjson = parse::
// Do something with successful operations for op in bodyasjson.items.ok { println!("{:?}", op); }
// Do something with failed operations for op in bodyasjson.items.err { println!("{:?}", op); } ```
Licensed under either of these: