elasticsearch-elixir icon indicating copy to clipboard operation
elasticsearch-elixir copied to clipboard

No-nonsense Elasticsearch library for Elixir

Results 30 elasticsearch-elixir issues
Sort by recently updated
recently updated
newest added

Add Telemetry support for all API requests, following `:telemetry.span/3` convention. For context, what this patch aims as goal is to produce automatic OpenTelemetry instrumentation, following [semantic traces for DBs][1]. [1]:...

This is in reference to #98 - I've forked the sigaws repo and published it to hex with the changes from the PR seen [here](https://github.com/handnot2/sigaws/pull/12)

I saw there are a few branches that got merged. 1.0.1 is currently not matching with what's in the `master` branch. ANy chance we can get a release update?

It's an upstream dependency problem, but Sigaws appears to have been unmaintained for some time now, and until [this PR](https://github.com/handnot2/sigaws/pull/12) gets merged (or Sigaws is forked or reimplmented by someone...

This is an issue I found while trying to run a search query using the GET method. https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations.html `Elasticsearch.get(MyApp.ElasticsearchCluster, "/posts/_doc/_search", '{ "aggs": { "my-agg-name": { "terms": { "field": "my-field" }...

This will result in an error if people copy this config. Thanks!

Currently your wrapper script is setting the environment to `/bin/bash`. Unfortunately not everyone has bash located in that place. I was wondering if you would be open to use `/usr/bin/env...

```elixir %{"error" => %{"code" => 404, "message" => "elastic: Error 404 (Not Found)", "status" => "Not Found"}} ``` So I'm having this error when trying to delete a not existing...

Hi, I am thinking of using this library for my ES integration. I am going to cluster my indexes as `posts-{region}` to scope them and search within those scopes. ie...

There may be documents that do not pass ES validation. For example self intersecting polygons. This leads hot_swap failying since every step needs to pass successfully: ``` with :ok

enhancement