Skip to content

PacktPublishing/Mastering-Elasticsearch-5.x-Third-Edition

Repository files navigation

Mastering Elasticsearch 5.x - Third Edition

This is the code repository for Mastering Elasticsearch 5.x - Third Edition, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

About the Book

This book will give you a brief recap of the basics and also introduce you to the new features of Elasticsearch 5. We will guide you through the intermediate and advanced functionalities of Elasticsearch, such as querying, indexing, searching, and modifying data. We’ll also explore advanced concepts, including aggregation, index control, sharding, replication, and clustering. ##Instructions and Navigation All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter02.

Chapters 1 and 8 do not have downloadable code or support files They contain simple commands

The code will look like the following:

public class CustomRestActionPlugin extends Plugin implements ActionPlugin
{
 @Override
 public List<Class<? extends RestHandler>> getRestHandlers() {
 return Collections.singletonList(CustomRestAction.class);
 }
}

This book was written using Elasticsearch 5.0.x, and all the examples and functions should work with it. In addition to that, you'll need a command-line tool that allows you to send HTTP requests such as curl, which are available for most operating systems. Please note that all examples in this book use the mentioned curl tool. If you want to use another tool, please remember to format the request in an appropriate way that is understood by the tool of your choice. In addition to that, to run examples in Chapter 11, Developing Elasticsearch Plugins, you will need a Java Development Kit (JDK) Version 1.8.0_73 and above installed and an editor that will allow you to develop your code (or a Java IDE such as Eclipse). To build the code and manage dependencies in Chapter 11, Developing Elasticsearch Plugins, we are using Apache Maven. The last chapter of this book has been written using Elastic Stack 5.0.0, so you will need to have Logstash, Kibana, and Metricbeat, all comprising the same version.

Related Products

Suggestions and Feedback

Click here if you have any feedback or suggestions.

About

Code repository for Mastering Elasticsearch 5.x Third Edition, published by Packt

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published