Top "Elasticsearch-py" questions

Python's official low-level client for Elasticsearch

python elasticsearch client set mappings during create index

I can set mappings of index being created in curl command like this: { "mappings":{ "logs_june":{ "_timestamp":{ "enabled":"true" }, "properties":{ "…

python pyelasticsearch elasticsearch-py
How to update a document using elasticsearch-py?

Does anyone have an example for how to use update? It's documented here, but the documentation is unclear and doesn't …

python elasticsearch elasticsearch-py
Elasticsearch is not sorting the results

I'm having problem with an elasticsearch query. I want to be able to sort the results but elasticsearch is ignoring …

sorting elasticsearch elasticsearch-dsl elasticsearch-py
Bulk update with Python's elasticsearch client

I'm attempting to do a bulk update based on state change on a document property. Create works fine but bulk …

python elasticsearch elasticsearch-py
escape special character in elasticsearch query

My question is simple, I can't use @ in the search query. Finally, I found that I can escape the special …

elasticsearch kibana sense elasticsearch-py
How do I create a (dockerized) Elasticsearch index using a python script running in a docker container?

I'm trying to index a containerized Elasticsearch db using the Python client https://github.com/elastic/elasticsearch-py called from a …

python docker elasticsearch docker-compose elasticsearch-py