Splunk Search

the search results disappear / how to keep them longer (python SDK)

tomasv
Explorer

Hi all,

I'm writing a cron job (using the Python SDK) that does a search and exports the data to a CSV file (to analyze it in a different app). The result usually is a few hundreds thousands rows (~ a million or so), so I need to fetch it piecewise (by 50k). The problem is that sometimes the result suddenly disappears after fetching the first few segments.

How to get rid of that? Is there an option to mark a result as 'do not remove' or something like that?

ineeman
Splunk Employee
Splunk Employee

Great question tomasv! The real answer has to do with the TTL of the search job. The default value is 600, and it unfortunately does not get reset when you get results from the job. You have a few options:

  1. You can call my_job.touch() after every call to my_job.results(...) - that will reset the TTL.
  2. You can explicitly set a longer TTL with `my_job.set_ttl(6000)' (or some other number, of course).

The other thing to note is that if you truly have hundreds of thousands of rows you need to get out of a single search, you may be better suited with using the search/jobs/export endpoint. In the Python SDK, you can take a look at the export sample here, which shows you how to do it. The benefit of the export endpoint is that it will simply stream the results to you as they are ready, so you don't have to keep paginating. You might find that this is a faster mechanism.

Let me know if this makes sense, and if not, I can add some more details.

ineeman
Splunk Employee
Splunk Employee

thanks - let us know if you need anything else. Also, don't forget to select an answer.

0 Karma

tomasv
Explorer

Great answer ineeman! I haven't tried the export endpoint yet, but the touch() seems to be working just fine.

0 Karma
Get Updates on the Splunk Community!

Congratulations to the 2025-2026 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

[Puzzles] Solve, Learn, Repeat: Nested loops in Event Conversion

This challenge was first posted on Slack #puzzles channelFor a previous puzzle, I needed a set of fixed-length ...

Your Guide to Splunk Digital Experience Monitoring

A flawless digital experience isn't just an advantage, it's key to customer loyalty and business success. But ...