Index template creation

Template creation is one of the most important features in Elasticsearch. It is used extensively with time-based data indexing. The main reason why we employ template creation for indexing is that most of the time, we would use our custom settings and mappings for different sets of data. Index templating allows us define default settings for indices by providing an index name pattern. So, let's assume that we have an index per day and the format is logstash-YYYY-MM-DD. Let's say, we want an index with only 2 shards and not 5 shards, which is the default. We can assign a template to the logstash-* pattern. Every time a document is inserted and when the index for the document is missing, the pattern will take the default ...

Get Elasticsearch Blueprints now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.