elastic
elastic
is an efficient, modular API client for Elasticsearch written in Rust.
The API is targeting the Elastic Stack 5.x
.
elastic
provides strongly-typed documents and weakly-typed queries.
This crate is still quite unstable and is likely to continue to churn breaking releases over the near future with not-so-detailed changelogs.
If you run into any problems upgrading in your own open source projects feel free to open up an issue and we'll give you a hand. The goal is definitely to offer a stable API eventually.
Add elastic
to your Cargo.toml
:
toml
[dependencies]
elastic = "*"
elastic_derive = "*"
serde_json = "*"
Create a SyncClient
and start making requests:
```rust
extern crate elastic_derive;
extern crate serde_json; extern crate elastic;
use serde_json::Value; use elastic::prelude::*;
// A reqwest HTTP client and default parameters. // The builder includes the base node url (http://localhost:9200). let client = SyncClientBuilder::new().build()?;
let query = "some query string";
// A search request with a freeform body.
let res = client.search::
// Iterate through the hits in the response. for hit in res.hits() { println!("{:?}", hit); } ```
elastic
also offers an AsyncClient
for use with the tokio
asynchronous io stack.
See the examples folder for complete samples.
Document mapping is derived at compile-time from your Plain Old Rust Structures. Just add a #[derive(ElasticType)]
attribute:
```rust
struct MyDocument {
pub id: i32,
pub title: String,
pub timestamp: Date
And you can start using MyDocument
in Client
request methods.
See the docs for more details.
If you'd like to use a strongly-typed Query DSL builder see rs-es
. This client does the hard work of providing an idiomatic Rust API for interacting with Elasticsearch. It has the advantage of letting you know your queries will parse at compile-time instead of runtime.
Licensed under either of these: