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

Snapshot creation


We saw the creation and registration of a repository in the previous section; now, we can move forward to the creation of snapshots.

Creating a snapshot named snap01 in the index_backup repository can be done by the following command:

PUT /_snapshot/index_backup/snap01

We can also use the wait_for_completion parameter along with the preceding command as follows:

PUT /_snapshot/index_backup/snap01?wait_for_completion=true

The wait_for_completion parameter if set to true, will wait till the snapshot is created and then only the request would return. Whereas, the false value would return the request immediately while allowing the snapshot creation to be done in the background. The default value for wait_for_completion is taken as false, even if the parameter is not mentioned during snapshot creation.

Snapshot creation on specific indices

When we create a snapshot, by default, it would take backups of all the up and running indices in the cluster. This behavior may be not fine in...

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}