elastigo icon indicating copy to clipboard operation
elastigo copied to clipboard

A Go (golang) based Elasticsearch client library.

Results 72 elastigo issues
Sort by recently updated
recently updated
newest added

Let's say I have a mapping with a single field of type `long` ``` json {"my-index": { "mappings": { "my-type": { "properties": { "field-1": { "type": "long"}}}}}} ``` If I...

I experienced a scenario where my elasticsearch cluster had a downtime. This caused my elastigo client to retry inserts over and over again. It was queuing more and more documents...

It's very common that some developers wanna add extra fields that are computed by script files or dynamic scripts to the query payload. We just need to add some new...

Thanks for the great library!! It helps me always. I hava a question. How to build a query like below. ``` json { "query":{ "filtered":{ "query":{ "should":[ {...}, {...} ]...

Currently, in `startHttpSender()`, if an error occurs then the buffer which was sent is queued to the ErrorChannel. Unfortunately, with the default Send implementation, this buffer has been fully read....

Is there a reason that this library supports a 'terms' filter but not a 'term' filter via the QueryDSL. Forgive me if I'm missing something.

http://godoc.org/?q=elasticsearch returns a lot of other packages. I think it would suffice to add "elasticsearch" to the package synopsis, like what these (unrelated) packages do: http://godoc.org/?q=rabbitmq

For now, there is only option 'field' available, but not 'script': > Counting the values generated by a script: > > { > ..., > > ``` > "aggs" :...

I noticed there is no scripted metric aggregation method in this module, is this feature left out for a reason or it's is supported via some other way?

Exists method was used to validate if access URI can return 200 by http HEAD method, however, HEAD will not return any body in HTTP protocal.