-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Elasticsearch 5.x Cookbook
By :

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:
We need to import QueryBuilders
to create the query:
import static org.elasticsearch.index.query.QueryBuilders.*;
We can create an index
and populate it with some data:
String index = "mytest"; String type = "mytype"; QueryHelper qh = new QueryHelper(); qh.populateData(index, type); ...
Change the font size
Change margin width
Change background colour