Splunk Search

Why Hunk's field extractor behaves differently in Smart Mode vs Fast Mode?

jimjh
Path Finder

My data files are in Avro, and I have a props.conf that looks like

[source::/logs/...]
sourcetype = api

[api]
KV_MODE = json
TIME_PREFIX = "timestamp"
TIME_FORMAT = %10s%3N

For a given time range,

  • in Smart Mode, Hunk tells me that some large n events were found
  • in Fast Mode, Hunk tells me that no events were found

How can I resolve this?

1 Solution

jimjh
Path Finder

I was given a workaround.

EXTRACT-_time = strptime('timestamp', "%s%3N")

View solution in original post

Ledion_Bitincka
Splunk Employee
Splunk Employee

In Hunk 6.2 the recommended way of solving this would be to tell Hunk to always return the timestamp field

[my-virtual-index]
....
# required fields (6.2 or later)
vix.input.[N].required.fields = <comma delimited, optionally wildcarded, list of fields to always output for this input>

In Hunk 6.1.x the recommended way of solving this issue is to disable the column projection optimization that leads to this problem:

[my-provider]
...
# disable column projection
vix.splunk.search.column.filter = false

Ledion_Bitincka
Splunk Employee
Splunk Employee

The reason for the difference in behavior is due to Hunk's optimization based on required fields - which in "Fast mode" are whatever the search requires, while "Smart mode", which for an event search (e.g. search index=avro) is the same as "Verbose mode", all fields are required. The avro record reader honors the required fields and since Hunk needs/expects "_time" while the data contains "timestamp" the time related field is omitted and thus causing the problem.

jimjh
Path Finder

I was given a workaround.

EXTRACT-_time = strptime('timestamp', "%s%3N")

martin_mueller
SplunkTrust
SplunkTrust

Stick to Smart Mode 😛 there rarely is a reason to not use Smart Mode.

What search are you running?

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...