February 2016
Intermediate to advanced
556 pages
11h 53m
English
In Chapter 1, Getting Started with Elasticsearch Cluster, we saw how to index a particular document into Elasticsearch. It required opening an HTTP connection, sending the document, and closing the connection. Of course, we were not responsible for most of that as we used the curl command, but in the background this is what happened. However, sending the documents one by one is not efficient. Because of that, it is now time to find out how to index a large number of documents in a more convenient and efficient way than doing so one by one.
Elasticsearch allows us to merge many requests into one package. This package can be sent as a single request. What's more, we ...
Read now
Unlock full access