SPLK-1002 Advanced Visualization and Lookups Practice Question
A Splunk administrator is creating a dashboard to visualize real-time network traffic data. The dashboard must include a lookup to enrich source IPs with location data. The lookup file contains 500,000 entries and is updated hourly. Which TWO optimization techniques should the administrator apply to ensure dashboard performance?
⚠ Common exam trap
Splunk often tests the misconception that `batch_index_query=true` applies to all lookup types, but it is specific to index lookups and not CSV or KV Store lookups, leading candidates to incorrectly select it for file-based lookups.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Use a KV store lookup instead of a CSV lookup.
KV Store lookups are optimized for large, frequently updated datasets (like 500,000 entries updated hourly) by storing data in-memory and supporting indexed lookups, which significantly reduces search-time overhead compared to CSV lookups that require file parsing and scanning. This makes KV Store ideal for real-time dashboards where low latency is critical.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
Use a KV store lookup instead of a CSV lookup.
Why this is correct
KV store supports indexing and concurrent access, improving performance for large lookups.
- ✗
Use the append command instead of lookup to add fields.
Why it's wrong here
The append command is not designed for field enrichment; it is used to add subsearch results.
- ✗
Set the lookup to batch_index_query=true in transforms.conf.
Why it's wrong here
This setting is for indexed lookups, not CSV or KV store lookups.
- ✗
Use a subsearch to filter the lookup file before joining.
Why it's wrong here
Subsearches can be inefficient and slow down the dashboard.
- ✓
Set the lookup to use max_matches=1 to prevent multiple matches.
Why this is correct
Limiting matches to one per event reduces processing overhead.
Go deeper
Related to this question
About these practice questions
One of 475 original SPLK-1002 practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This SPLK-1002 practice question is part of Courseiva's free Splunk certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SPLK-1002 exam.