Try 12 Elastic Certified Engineer practice-readiness questions on indexing, mappings, queries, aggregations, analyzers, cluster health, shard behavior, and operational troubleshooting.
Elastic Certified Engineer is a hands-on Elastic Stack route for candidates who need to build and troubleshoot Elasticsearch indices, mappings, queries, aggregations, analyzers, cluster behavior, and operational workflows.
Use this page to try original IT Mastery sample questions on engineering decisions. They are not official Elastic exam questions.
Practice option: Sample questions available
Start with the 12 sample questions on this page. Dedicated practice for Elastic Certified Engineer is not currently included as a full web-app practice page; enter your email to get updates when full practice becomes available or expands for this exam.
Need live practice now? See currently available IT Mastery exam pages.
Topic: mappings
A field stores user status values such as active, disabled, and pending, and users need exact filters and aggregations. Which mapping is usually best?
text onlykeyworddatedense_vectorBest answer: B
Explanation: Exact filters and aggregations fit keyword fields. text fields are analyzed for full-text search and are not the best primary choice for exact status buckets.
Topic: analyzers
A search for running should also match documents containing run and runner. Which design area matters most?
Best answer: D
Explanation: Matching word variants depends on analysis. Stemming or other token filters can normalize related terms, but they should match the language and search requirements.
Topic: index aliases
A team wants to switch searches from one backing index to a newly rebuilt index with minimal application change. What Elastic feature fits?
Best answer: A
Explanation: Aliases let applications reference a stable name while the underlying index changes. They support blue/green-style index migration and rollover patterns.
Topic: aggregations
A dashboard needs sales totals by region. Which query component is most relevant?
Best answer: C
Explanation: Bucket aggregations group documents, and metric aggregations calculate values. Region buckets plus sales totals directly answer the dashboard need.
Topic: query context
When should filter context be preferred over query context?
Best answer: B
Explanation: Filter context is for boolean inclusion criteria and can be cached efficiently. Query context is useful when relevance scoring matters.
Topic: shard allocation
A cluster turns yellow after creating an index with replicas. What is a common cause?
Best answer: D
Explanation: Yellow health usually means primary shards are allocated but replicas are not. Node count, allocation rules, and disk watermarks should be checked.
Topic: refresh interval
A write-heavy index does not need documents searchable immediately. What setting may improve indexing performance?
Best answer: A
Explanation: Frequent refreshes make documents searchable sooner but cost resources. Increasing refresh interval can improve bulk indexing throughput when immediate search is not required.
Topic: reindexing
A field was mapped incorrectly and existing documents need a corrected mapping. What is usually required?
Best answer: C
Explanation: Many mapping changes cannot be applied in place to existing fields. Reindexing into a correctly mapped index is a common fix.
Topic: snapshots
What is the primary purpose of Elasticsearch snapshots?
keywordBest answer: B
Explanation: Snapshots support backup and restore. They are not a tuning mechanism or replacement for monitoring.
Topic: search troubleshooting
A search that should match documents returns no hits. What should be checked first?
Best answer: D
Explanation: No hits can mean wrong target, too narrow time range, analyzer mismatch, field-type issue, query syntax error, or missing data. Engineers should verify each assumption.
Topic: ingest pipelines
A log source needs a timestamp parsed and a field renamed before indexing. What Elastic feature can help?
Best answer: A
Explanation: Ingest pipelines can transform documents before indexing, including parsing timestamps, renaming fields, and enriching data.
Topic: operational troubleshooting
Search latency increases after a new high-cardinality aggregation is added. What should be reviewed?
Best answer: C
Explanation: Aggregation performance depends on data shape, field type, cardinality, query scope, shard distribution, and resources. The fix should be evidence-based.
| If you miss… | Drill this next |
|---|---|
| mapping questions | keyword, text, numeric, date, nested, and runtime field choices |
| search questions | analyzer behavior, query versus filter context, and target index selection |
| aggregation questions | bucket, metric, cardinality, and performance tradeoffs |
| operations questions | shard health, refresh, snapshots, reindexing, and cluster troubleshooting |