Splunk Search

How can I specify specific lines within my lookup file to search against?

the_wolverine
Champion

I have a large resultset, lookupb.csv which consists of about 4 million lines, that I'm searching against that I need to break up in order to bypass the 10k result limit in subsearch.

Example:

| inputlookup lookupa.csv | search NOT [ |inputlookup lookupb.csv | head 10000 | fields fieldname ]

Obviously, I have a way to get 10000 first lines, and maybe 10000 last lines, but what about in-between?

0 Karma
1 Solution

somesoni2
Revered Legend

One option could be to have serial no in the lookup file itself or add serial no in subsearch and search based on it.

|inputlookup lookupb.csv | eval sno=1 | accum sno | where sno >= yourlowerlimit AND sno <= yourupperlimit

Also, consider option to increase the limit value in limits.conf so that there are less no of breakups.

View solution in original post

the_wolverine
Champion

That worked! Make it an answer so I can accept it.

0 Karma

somesoni2
Revered Legend

One option could be to have serial no in the lookup file itself or add serial no in subsearch and search based on it.

|inputlookup lookupb.csv | eval sno=1 | accum sno | where sno >= yourlowerlimit AND sno <= yourupperlimit

Also, consider option to increase the limit value in limits.conf so that there are less no of breakups.

Get Updates on the Splunk Community!

Splunk Observability as Code: From Zero to Dashboard

For the details on what Self-Service Observability and Observability as Code is, we have some awesome content ...

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Shape the Future of Splunk: Join the Product Research Lab!

Join the Splunk Product Research Lab and connect with us in the Slack channel #product-research-lab to get ...