<?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: Data getting rollover to Frozen bucket irrespective of frozenTimePeriodInSecs set to 365 days (31536000 secs) for the index in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Data-getting-rollover-to-Frozen-bucket-irrespective-of/m-p/301633#M57000</link>
    <description>&lt;P&gt;yes, &lt;BR /&gt;
you can check the size of your cold volume and how full your cold volume is using searches leveraging | dbinspect or other method.&lt;BR /&gt;
you can also check the DMC: settings -&amp;gt; indexing -&amp;gt; indexes and volumes: deployment &lt;BR /&gt;
if its a single indexer, you can check the file system with df command&lt;BR /&gt;
hope it helps&lt;/P&gt;</description>
    <pubDate>Sat, 20 May 2017 22:09:08 GMT</pubDate>
    <dc:creator>adonio</dc:creator>
    <dc:date>2017-05-20T22:09:08Z</dc:date>
    <item>
      <title>Data getting rollover to Frozen bucket irrespective of frozenTimePeriodInSecs set to 365 days (31536000 secs) for the index</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Data-getting-rollover-to-Frozen-bucket-irrespective-of/m-p/301631#M56998</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;

&lt;P&gt;Need your help in understanding the reason behind the below behavior.&lt;BR /&gt;
The data in my Index A is getting rolled over to Frozen bucket irrespective of the frozenTimePeriodInSecs set to 365 days. Here is my index configuration in indexes.conf.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[A]
homePath = volume:primary/A/db
coldPath = volume:primary/A/colddb
thawedPath = $SPLUNK_DB/A/thaweddb
coldToFrozenDir = /data/splunk/Splunk_Frozen_Data/ABC_APP/A/frozen
frozenTimePeriodInSecs = 31536000
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I could only see data available (searchable) ONLY for last 30 days in the system.  I verified the 'coldToFrozenDir' path and found the rolled over buckets.&lt;/P&gt;

&lt;P&gt;I followed the below Splunk Answer to figure out the reason behind the roll over, so that I can go and fix the problem.&lt;BR /&gt;
[&lt;A href="https://answers.splunk.com/answers/117988/halp-my-data-is-being-rolled-to-frozen-and-i-dont-know-why.html%5D%5B1"&gt;https://answers.splunk.com/answers/117988/halp-my-data-is-being-rolled-to-frozen-and-i-dont-know-why.html][1&lt;/A&gt;]&lt;/P&gt;

&lt;P&gt;In the result, I didn't find data related to Index A. It had results of every other index which were configured to rollover at specified time interval.&lt;/P&gt;

&lt;P&gt;Also the result from the below search query confirmed data moved from cold bucket to frozen bucket&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal sourcetype=splunkd bucketmover freeze "*A*"
INFO  BucketMover - AsyncFreezer freeze succeeded for bkt='/data/splunk/var/lib/splunk/A/colddb/db_1492192312_1491334289_19'
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I want to know what triggered the data to move from cold to frozen, when I set the index configuration not to rollover until surpassing 365 days.&lt;/P&gt;

&lt;P&gt;Also, here are my default setting in indexes.conf.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[default]
# Default for each index. Can be overridden per index based upon the volume of data received by that index.
# 300GB
homePath.maxDataSizeMB = 300000
# 200GB
coldPath.maxDataSizeMB = 200000

# VOLUME SETTINGS
# In this example, the volume spec is not defined here, it lives within
# the org_(indexer|search)_volume_indexes app, see those apps for more
# detail.

# Option1: One Volume for Hot and Cold
[volume:primary]
path = /data/splunk/var/lib/splunk
# 500GB
maxVolumeDataSizeMB = 500000

[volume:frozen]
path = /data/splunk/Splunk_Frozen_Data
maxVolumeDataSizeMB = 500000
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Appreciate your help. Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 19 May 2017 17:24:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Data-getting-rollover-to-Frozen-bucket-irrespective-of/m-p/301631#M56998</guid>
      <dc:creator>karthikklv</dc:creator>
      <dc:date>2017-05-19T17:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: Data getting rollover to Frozen bucket irrespective of frozenTimePeriodInSecs set to 365 days (31536000 secs) for the index</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Data-getting-rollover-to-Frozen-bucket-irrespective-of/m-p/301632#M56999</link>
      <description>&lt;P&gt;After referring to the Splunk documentation I think maxVolumeDataSizeMB configuration is causing cold buckets to roll over to frozen.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; # Option1: One Volume for Hot and Cold
 [volume:primary]
 path = /data/splunk/var/lib/splunk
 # 500GB
 maxVolumeDataSizeMB = 500000
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I believe cumulative size of my indexes is going beyond 500 GB which is causing Splunk to move cold buckets to frozen.&lt;/P&gt;

&lt;P&gt;Can anyone tell me if there is a way to confirm this.&lt;/P&gt;</description>
      <pubDate>Fri, 19 May 2017 18:40:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Data-getting-rollover-to-Frozen-bucket-irrespective-of/m-p/301632#M56999</guid>
      <dc:creator>karthikklv</dc:creator>
      <dc:date>2017-05-19T18:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: Data getting rollover to Frozen bucket irrespective of frozenTimePeriodInSecs set to 365 days (31536000 secs) for the index</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Data-getting-rollover-to-Frozen-bucket-irrespective-of/m-p/301633#M57000</link>
      <description>&lt;P&gt;yes, &lt;BR /&gt;
you can check the size of your cold volume and how full your cold volume is using searches leveraging | dbinspect or other method.&lt;BR /&gt;
you can also check the DMC: settings -&amp;gt; indexing -&amp;gt; indexes and volumes: deployment &lt;BR /&gt;
if its a single indexer, you can check the file system with df command&lt;BR /&gt;
hope it helps&lt;/P&gt;</description>
      <pubDate>Sat, 20 May 2017 22:09:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Data-getting-rollover-to-Frozen-bucket-irrespective-of/m-p/301633#M57000</guid>
      <dc:creator>adonio</dc:creator>
      <dc:date>2017-05-20T22:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: Data getting rollover to Frozen bucket irrespective of frozenTimePeriodInSecs set to 365 days (31536000 secs) for the index</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Data-getting-rollover-to-Frozen-bucket-irrespective-of/m-p/301634#M57001</link>
      <description>&lt;P&gt;Please keep in mind that the implicit maximum index size – maxTotalDataSizeMB is also 500,000 MBs.&lt;/P&gt;</description>
      <pubDate>Sun, 21 May 2017 00:50:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Data-getting-rollover-to-Frozen-bucket-irrespective-of/m-p/301634#M57001</guid>
      <dc:creator>ddrillic</dc:creator>
      <dc:date>2017-05-21T00:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: Data getting rollover to Frozen bucket irrespective of frozenTimePeriodInSecs set to 365 days (31536000 secs) for the index</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Data-getting-rollover-to-Frozen-bucket-irrespective-of/m-p/301635#M57002</link>
      <description>&lt;P&gt;Yes. I logged into DMC and checked the size of Indexes and Volumes for both the indexers in indexer cluster. They were slightly above 500 GB. We will be adding more disk space our indexers and bump up the maxVolumeDataSizeMB to 90% of new disk space.&lt;/P&gt;</description>
      <pubDate>Sun, 21 May 2017 16:26:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Data-getting-rollover-to-Frozen-bucket-irrespective-of/m-p/301635#M57002</guid>
      <dc:creator>karthikklv</dc:creator>
      <dc:date>2017-05-21T16:26:56Z</dc:date>
    </item>
    <item>
      <title>Re: Data getting rollover to Frozen bucket irrespective of frozenTimePeriodInSecs set to 365 days (31536000 secs) for the index</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Data-getting-rollover-to-Frozen-bucket-irrespective-of/m-p/301636#M57003</link>
      <description>&lt;P&gt;Are you saying we also need increase the value of maxTotalDataSizeMB to 90% of disk volume?&lt;/P&gt;</description>
      <pubDate>Sun, 21 May 2017 16:36:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Data-getting-rollover-to-Frozen-bucket-irrespective-of/m-p/301636#M57003</guid>
      <dc:creator>karthikklv</dc:creator>
      <dc:date>2017-05-21T16:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: Data getting rollover to Frozen bucket irrespective of frozenTimePeriodInSecs set to 365 days (31536000 secs) for the index</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Data-getting-rollover-to-Frozen-bucket-irrespective-of/m-p/301637#M57004</link>
      <description>&lt;P&gt;To sum up the comment thread,&lt;BR /&gt;
used DMC and discovered that Splunk rolls buckets to frozen since the size of data in the cold volume exceeds the &lt;CODE&gt;maxVolumeDataSizeMB&lt;/CODE&gt;&lt;BR /&gt;
here is a detailed explanation of this configuration from: &lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/Splunk/6.6.0/Admin/Indexesconf"&gt;https://docs.splunk.com/Documentation/Splunk/6.6.0/Admin/Indexesconf&lt;/A&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;maxVolumeDataSizeMB = &amp;lt;positive integer&amp;gt;
* Optional, ignored for storageType=remote
* If set, this attribute limits the total size of all databases that reside
  on this volume to the maximum size specified, in MB.  Note that this it
  will act only on those indexes which reference this volume, not on the
  total size of the path set in the path attribute of this volume.
* If the size is exceeded, Splunk will remove buckets with the oldest value
  of latest time (for a given bucket) across all indexes in the volume,
  until the volume is below the maximum size.  This is the trim operation.
  Note that this can cause buckets to be chilled [moved to cold] directly
  from a hot DB, if those buckets happen to have the least value of
  latest-time (LT) across all indexes in the volume.
* Highest legal value is 4294967295, lowest legal value is 1.
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 22 May 2017 00:47:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Data-getting-rollover-to-Frozen-bucket-irrespective-of/m-p/301637#M57004</guid>
      <dc:creator>adonio</dc:creator>
      <dc:date>2017-05-22T00:47:16Z</dc:date>
    </item>
  </channel>
</rss>

