Top "Elasticsearch-bulk-api" questions

For questions about the Elasticsearch bulk API.

How to use Bulk API to store the keywords in ES by using Python

I have to store some message in ElasticSearch integrate with my python program. Now what I try to store the …

python elasticsearch elasticsearch-bulk-api
How do I update multiple items in ElasticSearch?

Let's say I have a tag type in an ElasticSearch index, with the following mapping: { "tag": { "properties": { "tag": {"type": "string", "…

elasticsearch elasticsearch-bulk-api
What is the ideal bulk size formula in ElasticSearch?

I believe there should be a formula to calculate bulk indexing size in ElasticSearch. Probably followings are the variables of …

elasticsearch elasticsearch-bulk-api
Validation Failed: 1: no requests added in bulk indexing ElasticSearch

I have a JSON file and I need to index it on ElasticSearch server. JSOIN file looks like this: { "sku": "1", "…

json elasticsearch elasticsearch-bulk-api
BULK API : Malformed action/metadata line [3], expected START_OBJECT but found [VALUE_STRING]

Using Elasticsearch 5.5,getting the following error while posting this bulk request, unable to figure out what is wrong with the …

elasticsearch elasticsearch-bulk-api
How to handle multiple updates / deletes with Elasticsearch?

I need to update or delete several documents. When I update I do this: I first search for the documents, …

elasticsearch bulkinsert bulkupdate elasticsearch-bulk-api
Reindexing Elastic search via Bulk API, scan and scroll

I am trying to re-index my Elastic search setup, currently looking at the Elastic search documentation and an example using …

python elasticsearch indexing reindex elasticsearch-bulk-api
Set Request Timeout in Elastic Search for bulk loads

I wanted to set the request time to 20 sec or more in Elasticsearch Bulk uploads. Default time is set to 10 …

python elasticsearch request-timed-out elasticsearch-bulk-api
how to do bulk indexing to elasticsearch from python

I have nearly 10K json documents and i want to push all this documents to elasticsearch by using elasticsearch bulk …

python json elasticsearch elasticsearch-bulk-api
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