<?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 Re: How do you calculate max search concurrency in a search head cluster and an indexer cluster environment? in Deployment Architecture</title>
    <link>https://community.splunk.com/t5/Deployment-Architecture/How-do-you-calculate-max-search-concurrency-in-a-search-head/m-p/439622#M15491</link>
    <description>&lt;P&gt;Not quiet sure what you are asking, but the rules are exactly the same &lt;CODE&gt;¯\_(ツ)_/¯&lt;/CODE&gt; &lt;BR /&gt;
Maybe summoning @YamadaNoel can help with the language here ?&lt;/P&gt;

&lt;P&gt;cheers, MuS&lt;/P&gt;</description>
    <pubDate>Fri, 01 Feb 2019 05:39:03 GMT</pubDate>
    <dc:creator>MuS</dc:creator>
    <dc:date>2019-02-01T05:39:03Z</dc:date>
    <item>
      <title>How do you calculate max search concurrency in a search head cluster and an indexer cluster environment?</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/How-do-you-calculate-max-search-concurrency-in-a-search-head/m-p/439621#M15490</link>
      <description>&lt;P&gt;I know that how to calculate max search concurrency in stand-alone is below.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;normal search : max_hist_searches = max_search_per_cpu(* default is 1) * core + base_max_searches(* default is 6)

normal real-time search : max_realtime_searches = max_rt_search_multiplier(* default is 1) * max_hist_searches

saved search : max_hist_scheduled_searches = max_searches_perc(* default is 50)/100 * max_hist_searches

saved real-time search : max_realtime_scheduled_searches = max_searches_perc(* default is 50)/100 * max_realtime_searches
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;But if there is an environment such as below, how would I calculate?&lt;/P&gt;

&lt;P&gt;Search head : &lt;CODE&gt;3 (* contains captain)&lt;/CODE&gt;&lt;BR /&gt;
Indexer : &lt;CODE&gt;4 (* not contains Cluster master)&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;Please someone tell me.&lt;/P&gt;

&lt;P&gt;Also if there is document that mentions about it, please tell me too.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 02:32:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/How-do-you-calculate-max-search-concurrency-in-a-search-head/m-p/439621#M15490</guid>
      <dc:creator>yutaka1005</dc:creator>
      <dc:date>2019-02-01T02:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: How do you calculate max search concurrency in a search head cluster and an indexer cluster environment?</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/How-do-you-calculate-max-search-concurrency-in-a-search-head/m-p/439622#M15491</link>
      <description>&lt;P&gt;Not quiet sure what you are asking, but the rules are exactly the same &lt;CODE&gt;¯\_(ツ)_/¯&lt;/CODE&gt; &lt;BR /&gt;
Maybe summoning @YamadaNoel can help with the language here ?&lt;/P&gt;

&lt;P&gt;cheers, MuS&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 05:39:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/How-do-you-calculate-max-search-concurrency-in-a-search-head/m-p/439622#M15491</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2019-02-01T05:39:03Z</dc:date>
    </item>
    <item>
      <title>Re: How do you calculate max search concurrency in a search head cluster and an indexer cluster environment?</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/How-do-you-calculate-max-search-concurrency-in-a-search-head/m-p/439623#M15492</link>
      <description>&lt;P&gt;Hello @yutaka1005, &lt;/P&gt;

&lt;P&gt;The below formula works for all: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; max_searches_per_cpu x number_of_cpus + base_max_searches = max_hist_searches
 (max_searches_perc / 100) x max_hist_searches = max_hist_scheduled_searches
 max_rt_search_multiplier x max_hist_searches = max_realtime_searches
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The default settings are &lt;CODE&gt;base_max_searches = 6, max_searches_per_cpu = 1, max_searches_per = 50, and max_rt_search_multiplier = 1&lt;/CODE&gt;. These settings can be changes using limits.conf but you need to be careful as it all depends on your hardware capability:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; ((1 * 8) +6) = 14 = max_hist_searches per SH
 3 * 14 = 42 = max search head cluster concurrency

((50 /100) * 14 ) = 7 = max_historical_scheduled_searches per SH
 3 * 7 = 21 max search head cluster scheduled search concurrency

 1 * 14 = 14 = max_realtime_searches per SH
 3 * 14 = 42= max rt search head cluster concurrency
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This Link can provide you better understanding: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/7.2.3/DistSearch/SHCarchitecture" target="test_blank"&gt;https://docs.splunk.com/Documentation/Splunk/7.2.3/DistSearch/SHCarchitecture&lt;/A&gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Also, if captain feels the SHC is not able to handle that much jobs, it will start delaying or cancel the jobs automatically.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 06:15:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/How-do-you-calculate-max-search-concurrency-in-a-search-head/m-p/439623#M15492</guid>
      <dc:creator>vishaltaneja070</dc:creator>
      <dc:date>2019-02-01T06:15:07Z</dc:date>
    </item>
    <item>
      <title>Re: How do you calculate max search concurrency in a search head cluster and an indexer cluster environment?</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/How-do-you-calculate-max-search-concurrency-in-a-search-head/m-p/439624#M15493</link>
      <description>&lt;P&gt;Hi , &lt;/P&gt;

&lt;P&gt;Concurrency depends on no of cpu cores /indexers we have,below the table for understanding:&lt;BR /&gt;
IDX CPU Cores   Concurrency &lt;BR /&gt;
IDX-1   5              5&lt;BR /&gt;
IDX-2   10            10&lt;/P&gt;

&lt;P&gt;When we run a serach it takes 1 core to show the results.so we can say concurrency directely proposnal to number of cpu cores .&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 06:45:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/How-do-you-calculate-max-search-concurrency-in-a-search-head/m-p/439624#M15493</guid>
      <dc:creator>rohitvjoshi</dc:creator>
      <dc:date>2019-02-01T06:45:29Z</dc:date>
    </item>
    <item>
      <title>Re: How do you calculate max search concurrency in a search head cluster and an indexer cluster environment?</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/How-do-you-calculate-max-search-concurrency-in-a-search-head/m-p/439625#M15494</link>
      <description>&lt;P&gt;Thank you for answer.&lt;/P&gt;

&lt;P&gt;I understood that same rules as stand-alone are applied to each search heads, and the captain load balances searches that is handled by each search head.&lt;/P&gt;

&lt;P&gt;It is very helpful.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Feb 2019 05:47:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/How-do-you-calculate-max-search-concurrency-in-a-search-head/m-p/439625#M15494</guid>
      <dc:creator>yutaka1005</dc:creator>
      <dc:date>2019-02-04T05:47:47Z</dc:date>
    </item>
    <item>
      <title>Re: How do you calculate max search concurrency in a search head cluster and an indexer cluster environment?</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/How-do-you-calculate-max-search-concurrency-in-a-search-head/m-p/439626#M15495</link>
      <description>&lt;P&gt;Sorry, I'm not good at english.&lt;/P&gt;

&lt;P&gt;I wanted to know whether the same rule(*max concurrency of parallel search) as the stand-alone applies to the environment where the SH cluster and the indexer cluster exist.&lt;/P&gt;

&lt;P&gt;So, problem is solved.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Feb 2019 05:52:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/How-do-you-calculate-max-search-concurrency-in-a-search-head/m-p/439626#M15495</guid>
      <dc:creator>yutaka1005</dc:creator>
      <dc:date>2019-02-04T05:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: How do you calculate max search concurrency in a search head cluster and an indexer cluster environment?</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/How-do-you-calculate-max-search-concurrency-in-a-search-head/m-p/439627#M15496</link>
      <description>&lt;P&gt;@yutaka1005 &lt;/P&gt;

&lt;P&gt;Correct same rules as of stand-alone environment.&lt;/P&gt;

&lt;P&gt;Thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Feb 2019 06:28:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/How-do-you-calculate-max-search-concurrency-in-a-search-head/m-p/439627#M15496</guid>
      <dc:creator>vishaltaneja070</dc:creator>
      <dc:date>2019-02-04T06:28:20Z</dc:date>
    </item>
  </channel>
</rss>

