Quentin Pradet

Results 422 comments of Quentin Pradet

It's possible and there is a public Kibana REST API than performs the syncing. In theory we could do it but it means the user has to provide the Kibana...

Thank you for the thorough analysis! I like your last proposal best as it's more consistent with the existing behavior. I'll look into implementing it.

Hey @bbullard916, thanks for opening this issue. A few things to note here: 1. You don't have to assume it's a 200 status code, you can look in `response.meta.status`. I...

I have not managed to get Sphinx, our documentation system, to link to the transport docs yet.

Closing as it is documented in https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/config.html#_ignoring_status_codes at least.

Thanks @teuneboon, I can reproduce this! :tada: My observations: * Please don't do that. :) HTTP clients reuse connections to amortize the cost of TCP and TLS handshakes. Creating one...

Here's my current attempt with aiohttp: ```python3 import asyncio import aiohttp async def leaky(): i = 0 while i

I just remembered that the upcoming release later this month will include HTTPX support, so I tried it too. ```python3 import asyncio from elasticsearch import AsyncElasticsearch async def leaky(): i...

Hello @cjdoumas, and thanks for the report. Sorting within nested objects requires special syntax, please see https://www.elastic.co/guide/en/elasticsearch/reference/7.17/sort-search-results.html#nested-sorting. Do you get results when using `nested` in `sort`? If not, I'd appreciate...

Sorry for the delay, you've been more than patient enough. Your code wasn't really complete enough as I did not get the mapping and had to guess about them. I...