Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
ElasticSearch Blueprints

You're reading from  ElasticSearch Blueprints

Product type Book
Published in Jul 2015
Publisher Packt
ISBN-13 9781783984923
Pages 192 pages
Edition 1st Edition
Languages

Table of Contents (15) Chapters

Elasticsearch Blueprints
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
Google-like Web Search Building Your Own E-Commerce Solution Relevancy and Scoring Managing Relational Content Analytics Using Elasticsearch Improving the Search Experience Spicing Up a Search Using Geo Handling Time-based Data Index

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 value from the template. Let's see how a template is created:

curl -XPUT localhost:9200/_template/logstash -d '{
  "template": "logstash-*",
  "order": 0,
  "settings": {
    "number_of_shards": 2
  },
  "mappings": {
    "logs": {
      "_source": ...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}