aioelasticsearch icon indicating copy to clipboard operation
aioelasticsearch copied to clipboard

aioelasticsearch-py wrapper for asyncio

Results 31 aioelasticsearch issues
Sort by recently updated
recently updated
newest added

### Update [aiohttp](https://pypi.org/project/aiohttp) from **3.7.4** to **3.8.1**. Changelog ### 3.8.0 ``` ================== Features -------- - Added a ``GunicornWebWorker`` feature for extending the aiohttp server configuration by allowing the 'wsgi' coroutine...

The loop parameter was removed in python 3.10 and causes a TypeError there: ~~~ File "/usr/local/lib/python3.10/site-packages/aioelasticsearch/__init__.py", line 33, in __init__ super().__init__(hosts, transport_class=transport_class, **kwargs) File "/usr/local/lib/python3.10/site-packages/elasticsearch/client/__init__.py", line 205, in __init__ self.transport...

0.5.2 is the only release that require elasticsearch>=6 File "...../lib/python3.9/site-packages/aioelasticsearch/connection.py", line 61, in __init__ if StrictVersion(aiohttp.__version__).version < (3, 0): File "/usr/lib/python3.9/distutils/version.py", line 40, in __init__ self.parse(vstring) File "/usr/lib/python3.9/distutils/version.py", line 137,...

If 'max_retries=0' is set and the request fails, the client goes into an infinite loop, resulting in a ddos elasticsearch. In the synchronous version of the client, this case is...

## What do these changes do? This change addresses an issue with double-encoding URL components when performing a request against elastic search. For example, this causes issues when retrieving an...

## What do these changes do? Changing setup.py to support both ES 6 and ES 7 via extras_require in setup.py. Omitting it will render library broken. Tests are rewritten to...

## What do these changes do? Added convenient scan for composite aggregations as specified in [es docs](https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-composite-aggregation.html#_pagination). ## Are there changes in behavior for the user? None. ## Checklist -...

## What do these changes do? Allow to compress ES requests with gzip ## Are there changes in behavior for the user? Optional parameter `http_compress` for connection class ## Related...