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!

Index This | I am a number, but when you add ‘G’ to me, I go away. What number am I?

March 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...