elastigo
elastigo copied to clipboard
A Go (golang) based Elasticsearch client library.
The DELETE /_query endpoint provided by the Delete-By-Query plugin has been removed and replaced by the Delete By Query API. See [the document](https://www.elastic.co/guide/en/elasticsearch/reference/5.1/breaking_50_rest_api_changes.html#_literal_delete__query_literal_endpoint_removed) But mattbaird/elastigo still use it: ```go func...
When I use BulkIndexer to index data into ElasticSearch, I find that sometimes it would lost some data, the reason is that before the program exit, I will call BulkIndexer.Stop()...
I am bulk indexing content, and decided to overwrite the sender function so that: 1. I could retry failures 2. I could get a report of errors I'm indexing a...
This issue is really for @araddon This works, but has some idiosyncrasies. For instance, in the bulk_test.go file for `func TestBulkSmallBatch`, if you do not "sleep" and only `Flush()`, the...
Hi. I am currently using elastigo with Amazon ElasticSearch, and it indeed works. The only problem is, Amazon ElasticSearch is highly limited in how it can be authenticated with; it...
Make `MaxScore` `Float32Nullable` so that we can uncomment it in Hits. It was originally commented in e7e1c02 by @mschoch because Float32Nullable didn't exist at the time.
Hello, when I use elastigo found inside the package is the core of search methods. When the result of elasticsearch returned and the reason is that this field appears when...
We've been trying to track down some issues where there are holes in our imported data, yet no errors coming through. I think I've identified a race condition where the...
Added function to remove alias on index using API.