<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How do i get a list of all these concurrent searches? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-do-i-get-a-list-of-all-these-concurrent-searches/m-p/220835#M176576</link>
    <description>&lt;P&gt;I am trying to setup a summary and schedule it to run daily at 03.05a.m. as a cron job. But I get this error &lt;CODE&gt;Your maximum number of concurrent searches has been reached&lt;/CODE&gt;.&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;How do i get a list of all these searches?&lt;/STRONG&gt; Do i have to go into each search I have and see which ones of them are scheduled? And what does it mean by concurrent searches, can I have so many running within a certain time frame?  &lt;/P&gt;

&lt;P&gt;Schedule and alert&lt;BR /&gt;
 Schedule this search&lt;/P&gt;

&lt;P&gt;Schedule type *&lt;/P&gt;

&lt;P&gt;Cron schedule&lt;/P&gt;

&lt;P&gt;05 3 * * *&lt;BR /&gt;
Enter a cron-style schedule. &lt;/P&gt;

&lt;P&gt;...&lt;/P&gt;

&lt;P&gt;Summary indexing&lt;BR /&gt;
 Enable&lt;BR /&gt;
Enabling summary indexing will set the alert condition to 'always'.&lt;BR /&gt;
Select the summary index&lt;BR /&gt;
Failed to fetch data: Search not executed: Your maximum number of concurrent searches has been reached. usage=4 quota=4 user=user.name. SearchId=1475527164.1062544&lt;/P&gt;</description>
    <pubDate>Mon, 03 Oct 2016 21:28:52 GMT</pubDate>
    <dc:creator>HattrickNZ</dc:creator>
    <dc:date>2016-10-03T21:28:52Z</dc:date>
    <item>
      <title>How do i get a list of all these concurrent searches?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-i-get-a-list-of-all-these-concurrent-searches/m-p/220835#M176576</link>
      <description>&lt;P&gt;I am trying to setup a summary and schedule it to run daily at 03.05a.m. as a cron job. But I get this error &lt;CODE&gt;Your maximum number of concurrent searches has been reached&lt;/CODE&gt;.&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;How do i get a list of all these searches?&lt;/STRONG&gt; Do i have to go into each search I have and see which ones of them are scheduled? And what does it mean by concurrent searches, can I have so many running within a certain time frame?  &lt;/P&gt;

&lt;P&gt;Schedule and alert&lt;BR /&gt;
 Schedule this search&lt;/P&gt;

&lt;P&gt;Schedule type *&lt;/P&gt;

&lt;P&gt;Cron schedule&lt;/P&gt;

&lt;P&gt;05 3 * * *&lt;BR /&gt;
Enter a cron-style schedule. &lt;/P&gt;

&lt;P&gt;...&lt;/P&gt;

&lt;P&gt;Summary indexing&lt;BR /&gt;
 Enable&lt;BR /&gt;
Enabling summary indexing will set the alert condition to 'always'.&lt;BR /&gt;
Select the summary index&lt;BR /&gt;
Failed to fetch data: Search not executed: Your maximum number of concurrent searches has been reached. usage=4 quota=4 user=user.name. SearchId=1475527164.1062544&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2016 21:28:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-i-get-a-list-of-all-these-concurrent-searches/m-p/220835#M176576</guid>
      <dc:creator>HattrickNZ</dc:creator>
      <dc:date>2016-10-03T21:28:52Z</dc:date>
    </item>
    <item>
      <title>Re: How do i get a list of all these concurrent searches?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-i-get-a-list-of-all-these-concurrent-searches/m-p/220836#M176577</link>
      <description>&lt;P&gt;There's several ways to see information about these scheduled searches.  In addition to looking through your scheduled search configurations like you mention (and they're also in all of the savedsearches.conf files under the hood), you can manually find these by clicking on the Activity-&amp;gt;Jobs menu in the upper right of the Splunk UI.  From there you can use the various drop-downs to show All searches, then limit to just the ones that are Running.&lt;/P&gt;

&lt;P&gt;It is also possible to search for this information.  Here is a simple search that will find any information about Splunk queuing your searches due to hitting these limits.  Run this over the timeframe you're concerned about (+/- 15 minutes, for example) to see what could be going on (you'll typically need to be an admin to search the _internal index):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal sourcetype=splunkd component=DispatchManager queued
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If you want to search for them, the following search will show currently running searches:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rest /services/search/jobs | search dispatchState=RUNNING
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;BUT, you can end up in a Catch-22 if the Search Head is queuing your search and you're trying to run a search to see what is/was running.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2016 21:54:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-i-get-a-list-of-all-these-concurrent-searches/m-p/220836#M176577</guid>
      <dc:creator>jhupka</dc:creator>
      <dc:date>2016-10-03T21:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: How do i get a list of all these concurrent searches?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-i-get-a-list-of-all-these-concurrent-searches/m-p/220837#M176578</link>
      <description>&lt;P&gt;@hattrickNZ - did this answer your question? If so, you can "accept" this answer or post clarifying comments.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Oct 2016 14:41:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-i-get-a-list-of-all-these-concurrent-searches/m-p/220837#M176578</guid>
      <dc:creator>sloshburch</dc:creator>
      <dc:date>2016-10-05T14:41:34Z</dc:date>
    </item>
  </channel>
</rss>

