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

Official Python client for Elasticsearch

Results 122 elasticsearch-py issues
Sort by recently updated
recently updated
newest added

**Elasticsearch version** (`bin/elasticsearch --version`): 7.9 **`elasticsearch-py` version (`elasticsearch.__versionstr__`)**: 7.9.1 **Description of the problem including expected versus actual behavior**: We use this library with Google dataflow (apache beam). When we run...

- Elasticsearch server version: 7.5.2 - Elasticsearch python version: 7.5.1 I am trying to parse files containing millions of lines, and I am using the helpers.parallel_bulk function for indexing data....

**Elasticsearch version** (`bin/elasticsearch --version`): 7 **`elasticsearch-py` version (`elasticsearch.__versionstr__`)**: 7.9 / 7.8 / 7.7 **Description of the problem including expected versus actual behavior**: When trying to send a request containing an...

**Describe the feature**: SQL support in `elasticsearch.helpers.scan` or a separate helper for scanning SQL queries. I couldn't find a way to submit SQL through the standard `search` API, so I...

feature request

When passing basic auth headers the client calls: `b64encode(b(basic_auth)).decode('utf-8')` via the urllib3 request package. Here `b` is defined as ``` def b(s): return s.encode("latin-1") ``` This causes any non latin-1...

**Description** Since there is no `max_retry` configuration on helpers.parallel_bulk (#645) the default case seems to retry forever and never stop. This is a very strange default behavior and caused my...

I need to 'scan' with 'preserve_order' and it works well. However, documentation warns that setting it to true makes > don’t set the search_type to scan - this will cause...

We need to change the logic used to checking the calls made to something that can be incremented atomically like appending to a list or something.

I am using `bulk` to index this JSON dict: ``` { "project.nested.repeated.addresses":[ { "status":"current", "city":"New York", "zip":33333, "state":"NY", "address":"789 Any Avenue", "numberOfYears":2 }, { "status":"previous", "city":"Hoboken", "zip":44444, "state":"NJ", "address":"321 Main...