I am encountering error from _bulk endpoint but I can't solve since the error message sent by ES is null. I am calling the _bulk endpoint via ES REST API. This only happens intermittently.
I already tried replicating it via load testing but I still…
I try to send data to ES and I was using POST request to send data line by line and it worked fine with small files.
When I changed to use client.bulk(), I keep getting the following error message:
"status": 400,
"error":
{
"type":…
I am using Elasticsearch bulk API to send a lot of documents to index and delete at once. If there is an error for one document, other documents will be indexed or deleted successfully. And this leads to wrong state of data in elasticstore because…
I have the below format and was hoping to pre-process in bulk using elasticsearch.
{"title":"April","url":"https://simple.wikipedia.org/wiki/April", "abstract":"April is the 4th month of the year, and comes between March and May. It is one of four…
I have a problem in elasticsearch i am not being able to solve:
I have two different types in an index, one called 'keywords' and another one called 'products'.
Keywords have the string property 'keyword_content', and products have the text…
In a python script,
I'm trying for elasticsearch.helpers.bulk to store multiple records.
I will get a json-format string from another software, and I want to attach it in the source part
I got the helpers.bulk format by this answer
part of my…
I've been looking all over the place and haven't been able to find a suitable answer to this question. I've created a NEST client using this code:
var myIndex = "myTestIndex";
var myType = "myTestType";
var myClusterUri=…
I am trying to create an index in Elasticsearch for the JSON file of format:
{ "index" : { "_index" : "entity", "_type" : "type1", "_id" : "0" } }
{ "eid":"guid of Event autogenerated", "entityInfo": { "entityType":"qualityevent", …
I'm monitoring the elasticsearch cluster while bulk importing data.
So when I run curl localhost:9200/_cat/thread_pool?v
it shows:
host ip bulk.active bulk.queue bulk.rejected index.active index.queue index.rejected…
I'm using Java 1.7 and the ES bulk API with the java client to load json documents to and embedded Elasticsearch 1.7.1 instance.
Over the many hours this takes to run, I notice a gradual degradation in the rate of documents loaded per minute. I'm…
I'm using RabbitMQ River Plugin for Elasticsearch to Insert/Delete data to our ElasticSearch indexes. River plugin only supports Bulk API.
Our current data is using multiples indexes, an index by date, something like “indexName_yyyymmdd”
When…
My goal here is to get all documents from an index of an ES cluster and insert them in another ES cluster keeping the same metadata.
I had a look at mget API to retrieve data and Bulk API to insert it but this Bulk API needs a special…
Is there a way to bulk load the data below into elasticsearch without modifying the original content? I POST each object to be a single document. At the moment I'm using Python to parse through individual objects and POST them one at a time.
{
…
I am using the Elasticsearch _bulk api to insert some data into the index.
However, what I observed is that, if an index does not exist, this API will first create an index with dynamic mappings and then index the document.
Is there a way to find…
Premise: I already noticed this similar question, but it doesn't exactly cover what I would like to understand.
Problem
As part of a project to build a scalable and reliable search solution, I am exploring different ways to bulk load data into…