Splunk Dev

Java SDK - How to Save a Job

cbauza
Engager

I am running a Job and retrieving datas over 1 Gb.

What happpens is that the job expires before I have time to load all the datas.

Is there a way to save the job using the API or increase the time before the job expires ?

Tags (3)
0 Karma

ziegfried
Influencer

You can use the job.touch() method to keep the job alive for the given ttl (time to live) or modify the ttl by using job.setttl(<ttl in seconds>).

"Touching" the job every few thousand events might be a good idea. Additionally, using job.cancel()when you've finished processing the results can be used to remove the job.

job.setttl(86400);
processEvents(job);
job.cancel();

ineeman
Splunk Employee
Splunk Employee
Get Updates on the Splunk Community!

AppDynamics Summer Webinars

This summer, our mighty AppDynamics team is cooking up some delicious content on YouTube Live to satiate your ...

SOCin’ it to you at Splunk University

Splunk University is expanding its instructor-led learning portfolio with dedicated Security tracks at .conf25 ...

Credit Card Data Protection & PCI Compliance with Splunk Edge Processor

Organizations handling credit card transactions know that PCI DSS compliance is both critical and complex. The ...