Archives for October, 2015
How to change slow log settings in Elasticsearch
What are the slow log settings in Elasticsearch? Elasticsearch provide facility to keep track of your slow queries while indexing and searching data. It helps us to identify the slow…
HTML Tags which should not be closed in HTML5
In HTML5 Void element doesn't require closing tags. What are the Void Elements? A Void element is an element that can not allow to have any content in between the…
Partial Update in Elasticsearch
Partial Update in Elasticsearch Partial update in elasticsearch works same as updating whole document in Elasticsearch. This process retrieve the document, change it and reindex it again. In elasticsearch partial…
Updating Document in Elasticsearch
Documents in Elasticsearch are always immutable we cannot replace or change them directly. If we require updating document in Elasticsearch then we need to reindex or replace it. We can…
How to Increase or Decrease Replica in Elasticsearch
How to increase or decrease replica in Elasticsearch You can change number of replicas in live Elasticsearch Cluster using Indices APIs update indices settings. Update number of replicas for all…