avnere
(Avner)
September 15, 2022, 1:34pm
1
How Java client send the data source to the cluster?
bulkRequest.add(new IndexRequest().source(object));
client.bulk(_bulkRequest, RequestOptions.DEFAULT);
What exactly it does after converting the data to JSON?
Does it compress it?
How it transferred to the cluster?
dadoonet
(David Pilato)
September 15, 2022, 2:40pm
2
It's done using the same HTTP REST API you can call with curl.
avnere
(Avner)
September 15, 2022, 2:49pm
3
Means it convert the object to json and sent it by REST. correct?
If I have over than 200 milliion documents, how the network be effected?
dadoonet
(David Pilato)
September 16, 2022, 12:30am
4
You should split it in multiple calls. Like 10000 by 10000.
system
(system)
Closed
October 14, 2022, 12:30am
5
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.