February 2017
Intermediate to advanced
696 pages
12h 24m
English
In the previous recipe, we have seen how to build queries; in this recipe we can execute a query to retrieve some documents.
You need an up-and-running Elasticsearch installation as we described in the Downloading and installing Elasticsearch recipe in the Chapter 2, Downloading and Setup.
A Maven tool, or an IDE that natively supports it for Java programming such as Eclipse or IntelliJ IDEA, must be installed.
The code for this recipe is in the chapter_14/nativeclient directory and the referred class is the QueryExample.
To execute a standard query, we will perform the following steps:
QueryBuilders to create the query:import static org.elasticsearch.index.query.QueryBuilders.*; ...
Read now
Unlock full access