Question 424 of 510
Using Fields and LookupshardMultiple ChoiceObjective-mapped

Quick Answer

The answer is that the lookup file has not been uploaded to Splunk. This is the most likely cause because the GeoIP lookup command requires the actual lookup table—typically a CSV or KMZ file—to be present in Splunk’s lookup directory and defined in the lookups.conf configuration before it can be referenced in a search. Without the file being uploaded, Splunk cannot resolve the table name, triggering the “lookup table not found” error. On the Splunk Core Certified User SPLK-1002 exam, this question tests your understanding of how lookups are configured and that uploading the data file is a prerequisite, not just writing the search syntax. A common trap is assuming the lookup command alone will work if the file exists elsewhere on the system, but Splunk must explicitly know where to find it. Remember: no file, no lookup—upload first, then search.

SPLK-1002 Using Fields and Lookups Practice Question

This SPLK-1002 practice question tests your understanding of using fields and lookups. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

Exhibit

Refer to the exhibit.

Error message:
"Lookup table 'geoip' not found in 'lookups' directory."

Refer to the exhibit. A user gets this error when running a search with a GeoIP lookup. What is the most likely cause?

Clue words in this question

Noticing these words before you look at the options changes how you read each choice.

  • Clue: "most likely"

    Why it matters: Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.

Question 1hardmultiple choice
Full question →

Exhibit

Refer to the exhibit.

Error message:
"Lookup table 'geoip' not found in 'lookups' directory."

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

The lookup file has not been uploaded to Splunk

The error message indicates that Splunk cannot find the lookup table referenced in the search. Option C is correct because the GeoIP lookup file must be uploaded to Splunk (as a CSV or KMZ file) and defined as a lookup table in the lookups.conf configuration before it can be used in a search. Without the file being present in the system, the lookup command fails with a 'lookup table not found' error.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • The user does not have permission to use lookups

    Why it's wrong here

    Permission errors are different.

  • The lookup command syntax is incorrect

    Why it's wrong here

    Syntax errors are different.

  • The lookup file has not been uploaded to Splunk

    Why this is correct

    The file is missing from the expected location.

    Clue confirmation

    The clue word "most likely" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

  • The field name in the lookup does not match the event field

    Why it's wrong here

    Would not cause 'not found' error.

Common exam traps

Common exam trap: answer the scenario, not the keyword

Splunk often tests the distinction between a missing lookup file (Option C) and a syntax error (Option B), because candidates may assume the command is wrong when the actual issue is that the lookup table resource is not available.

Detailed technical explanation

How to think about this question

Under the hood, Splunk lookups rely on a lookup table definition in `lookups.conf` that points to a file (e.g., `GeoIPCity.dat` or a CSV) stored in `$SPLUNK_HOME/etc/system/lookups/` or an app's lookups directory. If the file is missing or the path is incorrect, Splunk cannot load the lookup table at search time, resulting in the error. In real-world scenarios, this often happens when a user copies a search from another environment without also migrating the lookup file and its configuration.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A practitioner preparing for the SPLK-1002 exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related SPLK-1002 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free SPLK-1002 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this SPLK-1002 question test?

Using Fields and Lookups — This question tests Using Fields and Lookups — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: The lookup file has not been uploaded to Splunk — The error message indicates that Splunk cannot find the lookup table referenced in the search. Option C is correct because the GeoIP lookup file must be uploaded to Splunk (as a CSV or KMZ file) and defined as a lookup table in the lookups.conf configuration before it can be used in a search. Without the file being present in the system, the lookup command fails with a 'lookup table not found' error.

What should I do if I get this SPLK-1002 question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Are there clue words in this question I should notice?

Yes — watch for: "most likely". Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

1 more ways this is tested on SPLK-1002

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. A Splunk user needs to perform a lookup that matches events based on a field 'userid' to a lookup table that contains 'userid', 'full_name', and 'email'. The lookup table is a CSV file named 'users.csv' located in the default lookup directory. The user runs the search: index=main | lookup users.csv userid OUTPUT full_name, email. However, the search returns an error that the lookup table 'users.csv' was not found. What is the most likely reason for this error?

medium
  • A.The CSV file must have a .csv extension, but the command should omit the extension
  • B.The fields 'full_name' and 'email' are not present in the CSV file
  • C.The CSV file is not in the correct format; it should have a header row
  • D.The lookup command must reference the lookup definition name, not the CSV file name directly

Why D: The `lookup` command in Splunk requires a lookup definition name, not the raw CSV filename. The lookup definition is created in Splunk's configuration (e.g., transforms.conf) and maps a logical name to the actual CSV file. Using the filename directly bypasses this definition, causing Splunk to report the file as not found because it searches for a definition, not the file path.

Last reviewed: Jun 30, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

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.