Elasticsearch: Full-Text Search Engine Fundamentals
Elasticsearch: Full-Text Search Engine Fundamentals
Up to 20 questions, shuffled on every run
Welcome to the Elasticsearch Basics Quiz! Elasticsearch is the powerhouse behind modern log analysis and real-time search. Whether you are troubleshooting a production crash by digging through Filebeat logs or building a performance dashboard in Kibana, understanding the underlying index structure and Query DSL is a must-have skill for modern DevOps engineers. Let’s see how much you know!
Answer key and explanations20 questions
The quiz above draws 20 questions at random from these 30, so a second attempt will not be the same run. Everything in the pool is listed here.
What is the primary purpose of Elasticsearch?
AnswerTo provide distributed search and near real-time analytics
In Elasticsearch, what is an "Index" equivalent to in a SQL database?
AnswerA Table
What format does Elasticsearch use to store documents?
AnswerJSON
What is a "Shard" in Elasticsearch?
AnswerA horizontal partition of data that allows an index to scale
What is the "Query DSL"?
AnswerA JSON-based language used to define searches and filters
Which HTTP method is used to retrieve a document by its ID?
AnswerGET
What is the role of "Kibana" in the ELK stack?
AnswerTo provide a visual interface for data exploration and analysis
What is a "Replica Shard"?
AnswerA copy of a primary shard used for failover and read scaling
Which port does Elasticsearch typically use for its REST API?
Answer9200
What is an "Inverted Index"?
AnswerA mapping of unique terms to the documents they appear in
Which Elasticsearch field type is used for "Full-Text Search"?
Answertext
What is the purpose of "Mapping" in Elasticsearch?
AnswerTo define the schema and data types of document fields
What is a "Node" in an Elasticsearch cluster?
AnswerA single running instance of Elasticsearch in a cluster
In Kibana, what is the "Discover" tab used for?
AnswerTo interactively explore, filter, and view raw document data
What does the "Match" query do in Elasticsearch?
AnswerAnalyzes a search string and performs a full-text query
What is "Score" (_score) in search results?
AnswerA numeric value indicating document relevance to a query
What is the purpose of an "Alias" in Elasticsearch?
AnswerTo provide a secondary name for one or more indexes
What is "Logstash" used for?
AnswerTo ingest, transform, and ship data to Elasticsearch
What is an "Aggregations" query (aggs)?
AnswerA way to summarize and group data for analytics
What is a "Mapping Conflict"?
AnswerWhen a field is indexed with incompatible data types
Which tool focuses on lightweight data shipping in the Elastic Stack?
AnswerBeats (Filebeat, Metricbeat)
What is the "Bulk API"?
AnswerAn API for performing many index/delete operations at once
What does "Near Real-Time" (NRT) mean in Elasticsearch?
AnswerThere is a slight delay before indexed data is searchable
What is the purpose of the "Term" query?
AnswerTo find documents that contain an exact, unanalyzed value
What is "Lucene"?
AnswerThe search library that Elasticsearch is built upon
In Kibana, what is an "Index Pattern"?
AnswerA setting that tells Kibana which indices to visualize
What is "Split Brain" in a cluster?
AnswerA state where two nodes both believe they are the Master
What is "Canvas" in Kibana?
AnswerA data-driven presentation tool for infographic dashboards
Which command shows the health of an Elasticsearch cluster?
AnswerGET /_cluster/health
What is "Index Lifecycle Management" (ILM)?
AnswerA way to automate the movement and deletion of indices








