Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
622 views

Use case: I have multiple kafka listeners for various topics. Each topic Listener will run in multiple threads (using spring's 'ConcurrentKafkaListenerContainer'). Listeners will be performing Update/...
Irfan Ulla's user avatar
0 votes
0 answers
151 views

My query is that I have a CSV file with data in the format as accepted by Salesforce and require to do a BULK sync using BULKApi Version 2. I now need to send this data from sql using SP_OAMethod ...
user21020259's user avatar
0 votes
1 answer
105 views

I am new to windows . I was working my entire on linux. Can somebody help me here for _bulk api indexing C:\ELK\master-1\elasticsearch\sample_data>curl -k -H 'Content-Type: application/x-ndjson' -X ...
Tushar singh's user avatar
0 votes
1 answer
198 views

I have an object with different values in Elasticsearch. When I want to update it, I use bulk api like below: inventory_edition.append( { '_op_type': 'update', '_index': value_index, '_id': ...
Shokouh Dareshiri's user avatar
1 vote
1 answer
932 views

I am using bulk api to create index and store data fields. Also I want to set mapping to exclude a field "field1" from the source. I know this can be done using "create Index API" ...
Manoj Saini's user avatar
0 votes
1 answer
1k views

While trying to index around 20000 records (each record has around 100kb size) using python's bulk API, I saw that max write queue size consumed is 6. So are my following understanding about bulk ...
Divakar Patil's user avatar
0 votes
1 answer
2k views

I am trying to insert multiple JSON documents in Elastic search. I have done with the single document as the following curl sample curl --request POST \ --url 'http://localhost:9200/articles/_doc/?...
Munish Kapoor's user avatar
0 votes
1 answer
381 views

I am trying to upload dense vectors to Elasticsearch endpoint. created index with mapping as below: mapping = { "mappings": { "properties" : { "vector": { ...
Vinay Sharma's user avatar
0 votes
1 answer
2k views

I'm trying to upload a new line JSON to Elasticsearch using the Bulk API. The bulk JSON I'm uploading looks like this, with each JSON on a new line: {"ip": "x.x.x.x", "seen": true, "classification": "...
ipconfuse's user avatar
0 votes
0 answers
178 views

There is a scheduler task (every ten minutes) that synchronize changed data from Oracle to ElasticSearch, but occasionally there are SocketTimeOutException java.net.SocketTimeoutException: 30,000 ...
zhuguowei's user avatar
  • 8,545
1 vote
0 answers
228 views

I'm going to load the bulk of data using BulkApi but while compiling the code it shows me the error. private static final Logger log = LoggerFactory.getLogger(BulkApiService.class); @Autowired ...
Lily's user avatar
  • 707
3 votes
1 answer
3k views

Java 1.8, Elasticsearch Low and High Level Rest Clients 7.0.0 I am trying the simple example from the docs found here: Bulk API BulkRequest bulkRequest = new BulkRequest(); request.add(new ...
Justin's user avatar
  • 4,549
0 votes
1 answer
215 views

I have a folder with around 590,035 json files. Each file is a document that has to be indexed. If I index each document using python then it is taking more than 30 hours. How do I index these ...
user avatar
1 vote
0 answers
1k views

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: "...
Yen Wu's user avatar
  • 11
0 votes
1 answer
2k views

I am using Elastic search 6.1 version My data is appending correctly and I am adding '\n' at the end of the request. My code is as follows: def insert_in_bulk(self, filee, rtype): U = urljoin(...
venkat's user avatar
  • 171
0 votes
1 answer
693 views

Say I have documents stored like below. document 1 { id : '1', title : "This is a test document1", list : ["value1" , "value2"], ... } document 2 { ...
Melvin Ruban's user avatar
1 vote
2 answers
2k views

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, ...
ESLearner's user avatar
1 vote
0 answers
738 views

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 '...
JavierAnselmi's user avatar
32 votes
5 answers
37k views

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 ...
balaji thiruvengadam's user avatar
0 votes
1 answer
144 views

I am using elastic package for golang. I want to use its BulkProcessor for sending huge amount of documents in background. As per shown in wiki, I could create a processor. But I don't want to create ...
Rohanil's user avatar
  • 1,898
0 votes
1 answer
3k views

I want to use BulkIndexRequest from Go package elastic. I try to find examples but it seems that they don't exist. So if anybody has used it, could you please help me to use it for creating request ...
Rohanil's user avatar
  • 1,898
4 votes
2 answers
4k views

I'm facing a problem inserting document using bulk API (C# NEST v5.4). I've an array of documents and inside of the array I've my ID. My code is: documents = documents .ToArray(); Client.Bulk(bd =&...
NatsuDragonEye's user avatar
2 votes
0 answers
6k views

I have a JSON array which contains a list of data that needs to be pushed to an ElasticSearch instance. Something like [ {"Message": "2aTeFCKTYWwfrF"}, {"Message": "2aTeFCKTYWwfrD"}, {"Message": "...
tsaebeht's user avatar
  • 1,700
0 votes
0 answers
740 views

I wish to do an update_by_query request using my python elasticsearch client. I wish to query with index, type and a field which is NOT id. Based on that field I wish to update some of the other ...
Sagnik Sinha's user avatar
0 votes
1 answer
1k views

I have been trying to use to the bulk insert function but every time I use it is showing some mapping error . Has the bulk insert function declaration have changed from nest 1.x to nest 5.x because in ...
Nilanjana's user avatar
  • 131