<?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: Retrieving Summary Index Data in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Retrieving-Summary-Index-Data/m-p/179097#M98348</link>
    <description>&lt;P&gt;300s is along time. How are you generating the data that goes to the summary index? Are you forwarding the summary data to the 4 search peers/indexers (you have a search head and 4 indexers right or do you mean 4 systems that send data to splunk)? What does the Job Inspector look like where is most of the time for the search spent?&lt;/P&gt;</description>
    <pubDate>Sun, 09 Mar 2014 08:33:49 GMT</pubDate>
    <dc:creator>chris</dc:creator>
    <dc:date>2014-03-09T08:33:49Z</dc:date>
    <item>
      <title>Retrieving Summary Index Data</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Retrieving-Summary-Index-Data/m-p/179096#M98347</link>
      <description>&lt;P&gt;Hi &lt;/P&gt;

&lt;P&gt;I am trying to retrieve data from summary index and it is taking 300secs to retrieve 140000 events from 4 search peers.&lt;BR /&gt;
index=summaryindex earliest=-7d@d latest=now        (240000  events take more than 300secs)&lt;/P&gt;

&lt;P&gt;from the same search head it is taking less than 15secs to retrieve the same amount of raw events from normal index.(4 search peers)&lt;BR /&gt;
index=cataloglogs earliest=-1hr@hr latest=now      ( around 240000 events take less than 15secs )&lt;/P&gt;

&lt;P&gt;why is it taking 300 secs just to retrieve data from summary index?  everything resides on the same disk.  is there anything i have to tune in to increase the performance on retrieving summarized data.&lt;/P&gt;

&lt;P&gt;Please advise.&lt;/P&gt;

&lt;P&gt;Thanks&lt;BR /&gt;
Praveen &lt;/P&gt;</description>
      <pubDate>Sun, 09 Mar 2014 05:29:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Retrieving-Summary-Index-Data/m-p/179096#M98347</guid>
      <dc:creator>praveenvemuri</dc:creator>
      <dc:date>2014-03-09T05:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: Retrieving Summary Index Data</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Retrieving-Summary-Index-Data/m-p/179097#M98348</link>
      <description>&lt;P&gt;300s is along time. How are you generating the data that goes to the summary index? Are you forwarding the summary data to the 4 search peers/indexers (you have a search head and 4 indexers right or do you mean 4 systems that send data to splunk)? What does the Job Inspector look like where is most of the time for the search spent?&lt;/P&gt;</description>
      <pubDate>Sun, 09 Mar 2014 08:33:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Retrieving-Summary-Index-Data/m-p/179097#M98348</guid>
      <dc:creator>chris</dc:creator>
      <dc:date>2014-03-09T08:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: Retrieving Summary Index Data</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Retrieving-Summary-Index-Data/m-p/179098#M98349</link>
      <description>&lt;P&gt;Thanks for your reply chris.  below is the search which runs every 10 mins and it is summary indexed&lt;/P&gt;

&lt;P&gt;index=catalogs earliest=-12min@min latest=-2min@min | bucket _time span=5min | eval status200=if(httpcode=="200", 1,0) | eval status4xx=if((httpcode&amp;gt;"399" AND httpcode&amp;lt;"500"),1,0) | eval status5xx=if((httpcode&amp;gt;499 AND httpcode&amp;lt;600),1,0) | eval rsppoint5=if(rsptime&amp;lt;500,1,0) | eval rsppoint5to1=if((rsptime&amp;gt;500 AND rsptime&amp;lt;1001),1,0) | eval rsp1to2=if((rsptime&amp;gt;1000 AND rsptime&amp;lt;2001),1,0) | eval rsp2to5=if((rsptime&amp;gt;2000 AND rsptime&amp;lt;5001),1,0)  | eval rspg60=if((rsptime&amp;gt;60000),1,0) | eval rsp5to10=if((rsptime&amp;gt;5000 AND rsptime&amp;lt;10001),1,0) | eval rsp10to60=if((rsptime&amp;gt;10000 AND rsptime&amp;lt;60001),1,0)  | sistats  sum(status200) as twox, sum(status4xx) as fourx, sum(status5xx) as fivex, count as "Requests per minute", avg(rsptime) as "Average Response time",  dc(clinetips) as uniquestbs, sum(rsppoint5) as rspp5, sum(rsppoint5to1) as rspp5to1, sum(rsp1to2) as rspp1to2, sum(rsp2to5) as rspp2to5, sum(rsp5to10) as rspp5to10, sum(rsp10to60) as rspp10to60 , sum(rspg60) as rsppg60 by _time, cataloghosts&lt;/P&gt;

&lt;P&gt;below is the search which retrieves data from summary index.&lt;/P&gt;

&lt;P&gt;index=summ_catalog_dropdowns earliest=-7day@day latest=-60min@min  | bucket _time span=1day | stats  sum(status200) as twox, sum(status4xx) as fourx, sum(status5xx) as fivex, count as "Requests per minute", avg(rsptime) as "Average Response time",  dc(catalog_clinetips) as uniquestbs, sum(rsppoint5) as rspp5, sum(rsppoint5to1) as rspp5to1, sum(rsp1to2) as rspp1to2, sum(rsp2to5) as rspp2to5, sum(rsp5to10) as rspp5to10, sum(rsp10to60) as rspp10to60 , sum(rspg60) as rsppg60 by _time, cataloghosts&lt;/P&gt;

&lt;P&gt;command.stats.execute_input is taking long time.  is there any way i can reduce the time taken by stats command. Please advise.&lt;/P&gt;

&lt;P&gt;262.381 command.stats.execute_input 259 &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;66.298  dispatch.stream.remote  249 -   2,080,370,874
17.397  dispatch.stream.remote.che-splunk-index03   65  -   545,221,560
16.971  dispatch.stream.remote.che-splunk-index01.echodata.tv   63  -   542,609,628
16.466  dispatch.stream.remote.che-splunk-index04   61  -   518,057,416
15.459  dispatch.stream.remote.che-splunk-index02.echodata.tv   56  -   474,474,006
4.227   dispatch.writeStatus    213 -   -
0.204   startup.handoff 1   -   -
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 28 Sep 2020 16:04:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Retrieving-Summary-Index-Data/m-p/179098#M98349</guid>
      <dc:creator>praveenvemuri</dc:creator>
      <dc:date>2020-09-28T16:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: Retrieving Summary Index Data</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Retrieving-Summary-Index-Data/m-p/179099#M98350</link>
      <description>&lt;P&gt;limit the fields to just the necessary ones as summary index by default has more summary and time fields than the normal index&lt;/P&gt;</description>
      <pubDate>Thu, 14 Feb 2019 00:35:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Retrieving-Summary-Index-Data/m-p/179099#M98350</guid>
      <dc:creator>cabauah</dc:creator>
      <dc:date>2019-02-14T00:35:11Z</dc:date>
    </item>
  </channel>
</rss>

