Top "Pyelasticsearch" questions

pyelasticsearch is a clean, future-proof, high-scale python API to 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
elasticsearch scrolling using python client

When scrolling in elasticsearch it is important to provide at each scroll the latest scroll_id: The initial search request …

python elasticsearch pyelasticsearch
Elasticsearch python API: Delete documents by query

I see that the following API will do delete by query in Elasticsearch - http://www.elasticsearch.org/guide/en/…

python elasticsearch pyes pyelasticsearch
Elasticsearch Aggregation by Day of Week and Hour of Day

I have documents of type: [{"msg":"hello", date: "some-date"},{"msg":"hi!", date: "some-date"}, ... I want to have the count of …

elasticsearch elasticsearch-plugin spring-data-elasticsearch pyelasticsearch nosql
elasticsearch python bulk api (elasticsearch-py)

I'm confused about py-elasticsearch bulk @Diolor solution works https://stackoverflow.com/questions/20288770/how-to-use-bulk-api-to-store-the-keywords-in-es-by-using-python, but I would like to use plain …

python elasticsearch pyelasticsearch elasticsearch-bulk-api
ElasticSearch query_string fails to parse query with some characters

I'm using the ElasticSearch (2.4) and the official Python client to perform simple queries. My code: from elasticsearch import Elasticsearch es_…

elasticsearch lucene pyelasticsearch
Change cluster name in elastic search

How to rename the current cluster in elasticsearch config? i want to rename the cluster without it going down if …

elasticsearch pyelasticsearch
Elastic Search HTTPConnectionPool(host='127.0.0.1', port=9200): Max retries exceeded

I have an Elastic Search server which I am querying both from a live website and through a Django management …

python django elasticsearch python-requests pyelasticsearch
Connecting to ES using python script

I am trying to connect and retrieve data from a ES engine. I am using the following script: from elasticsearch …

python elasticsearch pyes pyelasticsearch