<?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: Why does my Splunk indexer keep running out of space with my current indexes.conf? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Why-does-my-Splunk-indexer-keep-running-out-of-space-with-my/m-p/221236#M43433</link>
    <description>&lt;P&gt;Problem solved thanks to Yasaswy and Rich.&lt;/P&gt;

&lt;P&gt;Reducing the maxWarmDBCount was the solution. &lt;/P&gt;</description>
    <pubDate>Thu, 25 Feb 2016 17:39:58 GMT</pubDate>
    <dc:creator>gozulin</dc:creator>
    <dc:date>2016-02-25T17:39:58Z</dc:date>
    <item>
      <title>Why does my Splunk indexer keep running out of space with my current indexes.conf?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-does-my-Splunk-indexer-keep-running-out-of-space-with-my/m-p/221230#M43427</link>
      <description>&lt;P&gt;The indexer pauses indexing when free space goes under 5GB on the main partition. This is caused by too many warm buckets filling up space instead of being moved to cold buckets on the larger, spinning-disk volume.&lt;/P&gt;

&lt;P&gt;I have a 3.2TB volume for hot/warm data on SSD and a 12TB volume for cold data on spinning disk. This is my indexes.conf. What am I doing wrong? &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;#general
maxWarmDBCount = 300 
homePath.maxDataSizeMB = 3200000
coldPath.maxDataSizeMB = 12000000

#Volumes
[volume:caliente]
path = /splunkdata
maxVolumeDataSizeMB = 3200000

[volume:frio]
path = /cold
maxVolumeDataSizeMB = 12000000

# indexes
[_audit]
thawedPath = $SPLUNK_DB/audit/thaweddb
tstatsHomePath = volume:_splunk_summaries/audit/datamodel_summary
homePath = volume:caliente/splunk_indexes/audit/db
coldPath = volume:frio/_audit

[shenanigans]
thawedPath = $SPLUNK_DB/shenanigans/thaweddb
tstatsHomePath = volume:_splunk_summaries/shenanigans/datamodel_summary
maxConcurrentOptimizes = 6
maxHotIdleSecs = 86400
maxDataSize = auto_high_volume
homePath = volume:caliente/splunk_indexes/shenanigans/db
coldPath = volume:frio/shenanigans
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 24 Feb 2016 21:04:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-does-my-Splunk-indexer-keep-running-out-of-space-with-my/m-p/221230#M43427</guid>
      <dc:creator>gozulin</dc:creator>
      <dc:date>2016-02-24T21:04:20Z</dc:date>
    </item>
    <item>
      <title>Re: Why does my Splunk indexer keep running out of space with my current indexes.conf?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-does-my-Splunk-indexer-keep-running-out-of-space-with-my/m-p/221231#M43428</link>
      <description>&lt;P&gt;What error message or other symptom of a problem do you see?&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2016 12:40:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-does-my-Splunk-indexer-keep-running-out-of-space-with-my/m-p/221231#M43428</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2016-02-25T12:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: Why does my Splunk indexer keep running out of space with my current indexes.conf?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-does-my-Splunk-indexer-keep-running-out-of-space-with-my/m-p/221232#M43429</link>
      <description>&lt;P&gt;The indexer pauses indexing when free space goes under 5GB on the main partition. This is caused by too many warm buckets filling up space instead of being moved to cold buckets on the larger, spinning-disk volume.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2016 15:49:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-does-my-Splunk-indexer-keep-running-out-of-space-with-my/m-p/221232#M43429</guid>
      <dc:creator>gozulin</dc:creator>
      <dc:date>2016-02-25T15:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: Why does my Splunk indexer keep running out of space with my current indexes.conf?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-does-my-Splunk-indexer-keep-running-out-of-space-with-my/m-p/221233#M43430</link>
      <description>&lt;P&gt;Check out the maxHotSpanSecs attribute.  The default value of 90 days may be too high for your environment.&lt;BR /&gt;
Also, have a look at maxWarmDBCount.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2016 16:14:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-does-my-Splunk-indexer-keep-running-out-of-space-with-my/m-p/221233#M43430</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2016-02-25T16:14:23Z</dc:date>
    </item>
    <item>
      <title>Re: Why does my Splunk indexer keep running out of space with my current indexes.conf?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-does-my-Splunk-indexer-keep-running-out-of-space-with-my/m-p/221234#M43431</link>
      <description>&lt;P&gt;Hi, Some observations... you have  maxWarmDBCount = 300 and also have maxDataSize = auto_high_volume. On a 64bit system it would mean each bucket might take upto 10 GB and you have set the warm count at 300 (add 10 hot buckets as well). &lt;/P&gt;

&lt;P&gt;It looks like, depending on the activity, in the worst case scenario the homepath will be almost full 3.2 TB (300 * 10 for your warmbuckets at 10 GB + 10 hot buckets). Why don't you reduce the warm count?  Eg...  setting the warmcount to 250 would mean 500 GB space left on your homepath ..... as they will start rolling over.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 08:54:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-does-my-Splunk-indexer-keep-running-out-of-space-with-my/m-p/221234#M43431</guid>
      <dc:creator>Yasaswy</dc:creator>
      <dc:date>2020-09-29T08:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: Why does my Splunk indexer keep running out of space with my current indexes.conf?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-does-my-Splunk-indexer-keep-running-out-of-space-with-my/m-p/221235#M43432</link>
      <description>&lt;P&gt;maxWarmDBCount is very effective. Thanks! Dialing it down to  50 should do the trick. Thanks.&lt;/P&gt;

&lt;P&gt;I don't understand how maxHotSpanSecs would help, I have 8 indexes and the fastest-growing ones roll over at around 6GB. Could you explain?&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2016 17:37:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-does-my-Splunk-indexer-keep-running-out-of-space-with-my/m-p/221235#M43432</guid>
      <dc:creator>gozulin</dc:creator>
      <dc:date>2016-02-25T17:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: Why does my Splunk indexer keep running out of space with my current indexes.conf?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-does-my-Splunk-indexer-keep-running-out-of-space-with-my/m-p/221236#M43433</link>
      <description>&lt;P&gt;Problem solved thanks to Yasaswy and Rich.&lt;/P&gt;

&lt;P&gt;Reducing the maxWarmDBCount was the solution. &lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2016 17:39:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-does-my-Splunk-indexer-keep-running-out-of-space-with-my/m-p/221236#M43433</guid>
      <dc:creator>gozulin</dc:creator>
      <dc:date>2016-02-25T17:39:58Z</dc:date>
    </item>
  </channel>
</rss>

