<?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: What are the differences between the various features named &amp;quot;summary&amp;quot; in Splunk? in Reporting</title>
    <link>https://community.splunk.com/t5/Reporting/What-are-the-differences-between-the-various-features-named-quot/m-p/139717#M3130</link>
    <description>&lt;P&gt;Those methods A and B are not supposed to complete each others they are just 2 ways to achieve the same thing.&lt;/P&gt;

&lt;P&gt;A - The "Summary indexing" is like generating events in a new index.&lt;BR /&gt;
It's is perfect to generate a new set of pre-calculated data, and keep it for a longer retention.&lt;BR /&gt;
example : having millions of web acccess logs in an index with a short retention, and every day summarize them as a number of hit per day, store in an dedicated index with a long retention. At the end you will only keep this information.&lt;BR /&gt;
The only difficulty is if a scheduled search is skipped, you may have a gap to backfill&lt;/P&gt;

&lt;P&gt;B - Report acceleration is for searches only, it precaculate them for you.&lt;BR /&gt;
Example : having a long statistical search over a long period to populate a dashboard. Accelerate it to run all the time in the background , and load faster.&lt;/P&gt;

&lt;P&gt;C -  Data model acceleration is only usefull if you already have a datamodel. They are usually heavier to run, so accelerating them  will help. &lt;BR /&gt;
Example : the Common Information Model (CIM) comes with many datamodels, once the volume is large, the searches are slower. When the acceleration is turned on (depending of thebackfill range), it will be faster for the recent days.&lt;/P&gt;</description>
    <pubDate>Tue, 17 Nov 2015 15:55:24 GMT</pubDate>
    <dc:creator>yannK</dc:creator>
    <dc:date>2015-11-17T15:55:24Z</dc:date>
    <item>
      <title>What are the differences between the various features named "summary" in Splunk?</title>
      <link>https://community.splunk.com/t5/Reporting/What-are-the-differences-between-the-various-features-named-quot/m-p/139713#M3126</link>
      <description>&lt;P&gt;They are many features using objects named &lt;STRONG&gt;"summary"&lt;/STRONG&gt;, this is confusing, please clarify.&lt;/P&gt;

&lt;P&gt;what are the differences between all those paths ?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;$SPLUNK_HOME/var/lib/splunk/summary/db
$SPLUNK_HOME/var/lib/splunk/defaultdb/summary 
$SPLUNK_HOME/var/lib/splunk/defaultdb/datamodel_summary
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;In savedsearches, what means &lt;CODE&gt;auto_summarize&lt;/CODE&gt; and &lt;CODE&gt;alert.action=summary&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Sep 2014 01:18:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/What-are-the-differences-between-the-various-features-named-quot/m-p/139713#M3126</guid>
      <dc:creator>mataharry</dc:creator>
      <dc:date>2014-09-25T01:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: What are the differences between the various features named "summary" in Splunk?</title>
      <link>https://community.splunk.com/t5/Reporting/What-are-the-differences-between-the-various-features-named-quot/m-p/139714#M3127</link>
      <description>&lt;P&gt;To clarify there are 3 features named "summary"  in splunk,  :&lt;/P&gt;

&lt;P&gt;A - &lt;STRONG&gt;Summary indexing&lt;/STRONG&gt; : classic since splunk 4.*&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;populated by scheduled searches, can use special "si*" stats commands (use the parameter alert.action=summary in savedsearches.conf)&lt;/LI&gt;
&lt;LI&gt;results are saved in the spooler and reindexed with the sourcetype stash_new&lt;/LI&gt;
&lt;LI&gt;stored in an index of your choice. &lt;/LI&gt;
&lt;LI&gt;an index named "summary" is shipped with splunk by default ($SPLUNK_HOME/var/lib/splunk/summary/db)&lt;/LI&gt;
&lt;LI&gt;the results have to be retrieved with special searches syntax&lt;/LI&gt;
&lt;LI&gt;docs : &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.1.3/Knowledge/Usesummaryindexing" target="_blank"&gt;http://docs.splunk.com/Documentation/Splunk/6.1.3/Knowledge/Usesummaryindexing&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;B - &lt;STRONG&gt;Report acceleration&lt;/STRONG&gt; : introduced on splunk 5.*&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;Some searches can be accelerated,  (use the parameter auto_summarize=true  in savedsearches.conf)&lt;/LI&gt;
&lt;LI&gt;for each index a folder named "summary" is created at the same level than the homePath.  ( example $SPLUNK_HOME/var/lib/splunk/defaultdb/summary)&lt;/LI&gt;
&lt;LI&gt;The acceleration is transparent.&lt;/LI&gt;
&lt;LI&gt;docs &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.1.3/Knowledge/Aboutsummaryindexing#Report_acceleration" target="_blank"&gt;http://docs.splunk.com/Documentation/Splunk/6.1.3/Knowledge/Aboutsummaryindexing#Report_acceleration&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;C - &lt;STRONG&gt;Data model acceleration&lt;/STRONG&gt; : introduced on splunk 6.*&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;the data models can be accelerated, (use the parameter acceleration=true in datamodels.conf)&lt;/LI&gt;
&lt;LI&gt;the results are stored per index in the folder named "datamodel_summary" at the same level than the homePath.  (example $SPLUNK_HOME/var/lib/splunk/defaultdb/datamodel_summary )&lt;/LI&gt;
&lt;LI&gt;The acceleration rely on tstats commands and is transparent.&lt;/LI&gt;
&lt;LI&gt;docs : &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.1.3/Knowledge/Aboutsummaryindexing#Data_model_acceleration" target="_blank"&gt;http://docs.splunk.com/Documentation/Splunk/6.1.3/Knowledge/Aboutsummaryindexing#Data_model_acceleration&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;Remark : none of those features counts on your license usage, but they can add some extra search load to generate the summarized data.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 17:41:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/What-are-the-differences-between-the-various-features-named-quot/m-p/139714#M3127</guid>
      <dc:creator>yannK</dc:creator>
      <dc:date>2020-09-28T17:41:48Z</dc:date>
    </item>
    <item>
      <title>Re: What are the differences between the various features named "summary" in Splunk?</title>
      <link>https://community.splunk.com/t5/Reporting/What-are-the-differences-between-the-various-features-named-quot/m-p/139715#M3128</link>
      <description>&lt;P&gt;@yannK - Is there anyway you could explain these in more of a conceptual vs. a mechanical way?&lt;/P&gt;</description>
      <pubDate>Tue, 17 Nov 2015 15:19:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/What-are-the-differences-between-the-various-features-named-quot/m-p/139715#M3128</guid>
      <dc:creator>jaredlaney</dc:creator>
      <dc:date>2015-11-17T15:19:26Z</dc:date>
    </item>
    <item>
      <title>Re: What are the differences between the various features named "summary" in Splunk?</title>
      <link>https://community.splunk.com/t5/Reporting/What-are-the-differences-between-the-various-features-named-quot/m-p/139716#M3129</link>
      <description>&lt;P&gt;For example, maybe explain if one is more like an additional index vs. one being a cache?  Maybe some good cases of when to use one vs. when to use another.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Nov 2015 15:20:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/What-are-the-differences-between-the-various-features-named-quot/m-p/139716#M3129</guid>
      <dc:creator>jaredlaney</dc:creator>
      <dc:date>2015-11-17T15:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: What are the differences between the various features named "summary" in Splunk?</title>
      <link>https://community.splunk.com/t5/Reporting/What-are-the-differences-between-the-various-features-named-quot/m-p/139717#M3130</link>
      <description>&lt;P&gt;Those methods A and B are not supposed to complete each others they are just 2 ways to achieve the same thing.&lt;/P&gt;

&lt;P&gt;A - The "Summary indexing" is like generating events in a new index.&lt;BR /&gt;
It's is perfect to generate a new set of pre-calculated data, and keep it for a longer retention.&lt;BR /&gt;
example : having millions of web acccess logs in an index with a short retention, and every day summarize them as a number of hit per day, store in an dedicated index with a long retention. At the end you will only keep this information.&lt;BR /&gt;
The only difficulty is if a scheduled search is skipped, you may have a gap to backfill&lt;/P&gt;

&lt;P&gt;B - Report acceleration is for searches only, it precaculate them for you.&lt;BR /&gt;
Example : having a long statistical search over a long period to populate a dashboard. Accelerate it to run all the time in the background , and load faster.&lt;/P&gt;

&lt;P&gt;C -  Data model acceleration is only usefull if you already have a datamodel. They are usually heavier to run, so accelerating them  will help. &lt;BR /&gt;
Example : the Common Information Model (CIM) comes with many datamodels, once the volume is large, the searches are slower. When the acceleration is turned on (depending of thebackfill range), it will be faster for the recent days.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Nov 2015 15:55:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/What-are-the-differences-between-the-various-features-named-quot/m-p/139717#M3130</guid>
      <dc:creator>yannK</dc:creator>
      <dc:date>2015-11-17T15:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: What are the differences between the various features named "summary" in Splunk?</title>
      <link>https://community.splunk.com/t5/Reporting/What-are-the-differences-between-the-various-features-named-quot/m-p/139718#M3131</link>
      <description>&lt;P&gt;yannK mentioned the following&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
&lt;P&gt;an index named "summary" is shipped with splunk by default ($SPLUNK_HOME/var/lib/splunk/summary/db)&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;I believe it's $SPLUNK_HOME/var/lib/splunk/summarydb, not $SPLUNK_HOME/var/lib/splunk/summary/db. Notice that there is no backslash between "summary" and "db".&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 12:02:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/What-are-the-differences-between-the-various-features-named-quot/m-p/139718#M3131</guid>
      <dc:creator>mic</dc:creator>
      <dc:date>2020-09-29T12:02:11Z</dc:date>
    </item>
  </channel>
</rss>

