Russ Cam

Results 80 comments of Russ Cam

Started looking at this in [enhancement/24](https://github.com/elastic/elasticsearch-rs/tree/enhancement/24) branch.

Hey @Jasperav, it's already possible to do this ```rust let client = Elasticsearch::default(); let response = client.sql() .query() .body(json!({ "query": "SELECT YEAR(release_date) AS year FROM library WHERE page_count > ?...

Yes @mindbat 😃 Clients typically use https://clients-ci.elastic.co/ for running the YAML spec tests (#19). I was thinking that GitHub actions might work better for the above?

Clients CI environment now runs all yaml tests for a PR, but I think it would be useful to run all the tests in the elasticsearch create

Hi @oeed, I think #126 is going in the direction that you're after. Ideally, you'd be able to do ```rust let response = client .search("my_index") .q("title:Elasticsearch") .send() .await?; ``` In...

Thinking about sniffing further and discussing with folks on the clients team, the connection pool is responsible for _managing_ one or more _connections_ (connections being details about nodes in the...

Really appreciate your effort, @srleyva! I've left some comments

Thanks for the ping, @srleyva 👍 Hoping to get a chance to look at this again this week, unless @swallez beats me to it!

Needs https://github.com/elastic/elasticsearch-rs/pull/156

@jubyvictor It might be good to hold off on this for now. The reference documentation is undergoing a fairly significant overhaul at the moment, so examples are changing quite frequently....