0
0
Elasticsearchquery~5 mins

Index settings (shards, replicas) in Elasticsearch - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is a shard in Elasticsearch?
A shard is a basic unit of storage in Elasticsearch. It holds a subset of the data in an index, allowing the data to be split across multiple nodes for better performance and scalability.
Click to reveal answer
beginner
What does the number_of_shards setting control?
It controls how many primary shards an index is divided into. This number cannot be changed after the index is created.
Click to reveal answer
beginner
What is a replica in Elasticsearch?
A replica is a copy of a primary shard. It provides fault tolerance and increases search capacity by allowing queries to run on multiple copies.
Click to reveal answer
intermediate
How does the number_of_replicas setting affect an index?
It sets how many copies of each primary shard are created. More replicas mean better fault tolerance and faster searches but use more storage.
Click to reveal answer
intermediate
Can you change the number_of_replicas after creating an index?
Yes, you can change the number_of_replicas at any time to add or remove replica shards without downtime.
Click to reveal answer
What happens if you increase the number_of_replicas for an index?
AMore copies of shards are created, improving fault tolerance and search speed.
BThe index data is deleted and recreated.
CThe number of primary shards increases.
DThe index becomes read-only.
Which setting cannot be changed after index creation?
Arefresh_interval
Bnumber_of_shards
Cnumber_of_replicas
Dindex.mapping.total_fields.limit
Why do we use shards in Elasticsearch?
ATo encrypt data.
BTo compress data.
CTo backup data to external storage.
DTo split data across nodes for scalability and performance.
What is the default number_of_replicas in Elasticsearch?
A1
B2
C0
D3
If an Elasticsearch node fails, what helps keep the data available?
AIndex templates
BPrimary shards only
CReplica shards
DCluster settings
Explain the roles of shards and replicas in Elasticsearch index settings.
Think about how data is stored and protected in Elasticsearch.
You got /4 concepts.
    Describe how changing the number_of_replicas affects an Elasticsearch cluster.
    Consider the benefits and costs of having more copies of data.
    You got /4 concepts.