Hi,
I am trying to search using Splunk Java search API.
I have seen there is a limit in number of events retrieved using Splunk search job. By default 100 and we can create up to 2 power 31 minus 1 or(2147483647), as below.
val jobRes = new JobResultsArgs();
jobRes.setCount(2147483647)
val resultsNormalSearch = job.getResults(jobRes);
Is there a way, to specify NO LIMIT on results? I tried -1, but it didn't work.
↧