elasticsearch-bulk-api Questions

5

Using Elasticsearch 5.5,getting the following error while posting this bulk request, unable to figure out what is wrong with the request. "type": "illegal_argument_exception", "reason": "Malformed...
Iniquitous asked 21/8, 2017 at 8:19

5

I have a JSON file and I need to index it on ElasticSearch server. JSON file looks like this: { "sku": "1", "vbid": "1", "created": "Sun, 0...
Our asked 21/4, 2016 at 10:12

8

Solved

I believe there should be a formula to calculate bulk indexing size in ElasticSearch. Probably followings are the variables of such a formula. Number of nodes Number of shards/index Document size...
Sarmiento asked 28/8, 2013 at 13:3

5

I have to store some message in ElasticSearch integrate with my python program. Now what I try to store the message is: d={"message":"this is message"} for index_nr in range(1,5): ElasticSearch...
Torero asked 29/11, 2013 at 15:14

9

Let's say I have a tag type in an ElasticSearch index, with the following mapping: { "tag": { "properties": { "tag": {"type": "string", "store": "yes"}, "aliases": {"type": "string"} } } } ...
Bout asked 17/4, 2012 at 9:56

4

I am trying to re-index my Elastic search setup, currently looking at the Elastic search documentation and an example using the Python API I'm a little bit confused as to how this all works though...

1

Solved

I wanted to set the request time to 20 sec or more in Elasticsearch Bulk uploads. Default time is set to 10 sec and my Warning message days it takes 10.006 sec. And, right after displaying th...

2

I'm confused about py-elasticsearch bulk @Diolor solution works https://mcmap.net/q/258051/-how-to-use-bulk-api-to-store-the-keywords-in-es-by-using-python, but I would like to use plain es.bulk()...

0

I want to run a bulk import from my MySQL table to ES - for my model Wine - in my production server. There is 1.5M records. My model - code for ES gem: include Elasticsearch::Model include Elasti...
Lolanthe asked 5/4, 2016 at 12:55

1

Solved

I am trying to replacing the documents on ES using NEST. I am seeing the following options are available. Option #1: var documents = new List<dynamic>(); `var blkOperations = documents.Sel...
Coincidence asked 25/1, 2016 at 17:1
1

© 2022 - 2024 — McMap. All rights reserved.