<?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: Create bloom filter after the fact in Splunk Dev</title>
    <link>https://community.splunk.com/t5/Splunk-Dev/Create-bloom-filter-after-the-fact/m-p/45352#M572</link>
    <description>&lt;P&gt;From index.conf docs:&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Admin/indexesconf"&gt;http://docs.splunk.com/Documentation/Splunk/latest/Admin/indexesconf&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;&lt;BR /&gt;
maxBloomBackfillBucketAge = &lt;INTEGER&gt;[smhd]&lt;BR /&gt;
       * If a (warm or cold) bucket is older than this, we shall not [re]create its blomfilter when we come across it&lt;BR /&gt;
       * Defaults to 30d.&lt;BR /&gt;
       * When set to 0, bloomfilters are never rebuilt&lt;BR /&gt;
&lt;/INTEGER&gt;&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;If you set this to a large number (e.g. 700d), and restart Splunk, it will automatically start recreating the bloom filters as part of the fsck process:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;5-08-2012 09:54:33.066 -0500 INFO  ProcessTracker - (child_2__Fsck)  Fsck
- Rebuild --bloom-only bucket /opt/splunk/var/lib/splunk/proxy/db/db_1327467837_1327451635_11 took 2635.6 milliseconds 05-08-2012 09:55:05.173 -0500 INFO  ProcessTracker - (child_3__Fsck)  Fsck
- Rebuild --bloom-only bucket /opt/splunk/var/lib/splunk/proxy/db/db_1327451634_1327435722_10 took 3.535 seconds 05-08-2012 09:55:19.568 -0500 INFO  ProcessTracker - (child_4__Fsck)  Fsck
- Rebuild --bloom-only bucket /opt/splunk/var/lib/splunk/proxy/db/db_1327435721_1327426983_9 took 3.306 seconds
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 08 May 2012 15:51:43 GMT</pubDate>
    <dc:creator>supersleepwalke</dc:creator>
    <dc:date>2012-05-08T15:51:43Z</dc:date>
    <item>
      <title>Create bloom filter after the fact</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Create-bloom-filter-after-the-fact/m-p/45351#M571</link>
      <description>&lt;P&gt;I've been backfilling a year worth of logs, and just now realized that I didn't reconfigure maxBloomBackfillBucketAge, and none of these old logs have bloom filters, which is desperately necessary given the size of these logs. Is there any way I can create the bloom filters without having to blow these logs away and start from scratch?&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2012 04:32:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Create-bloom-filter-after-the-fact/m-p/45351#M571</guid>
      <dc:creator>supersleepwalke</dc:creator>
      <dc:date>2012-05-08T04:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: Create bloom filter after the fact</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Create-bloom-filter-after-the-fact/m-p/45352#M572</link>
      <description>&lt;P&gt;From index.conf docs:&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Admin/indexesconf"&gt;http://docs.splunk.com/Documentation/Splunk/latest/Admin/indexesconf&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;&lt;BR /&gt;
maxBloomBackfillBucketAge = &lt;INTEGER&gt;[smhd]&lt;BR /&gt;
       * If a (warm or cold) bucket is older than this, we shall not [re]create its blomfilter when we come across it&lt;BR /&gt;
       * Defaults to 30d.&lt;BR /&gt;
       * When set to 0, bloomfilters are never rebuilt&lt;BR /&gt;
&lt;/INTEGER&gt;&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;If you set this to a large number (e.g. 700d), and restart Splunk, it will automatically start recreating the bloom filters as part of the fsck process:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;5-08-2012 09:54:33.066 -0500 INFO  ProcessTracker - (child_2__Fsck)  Fsck
- Rebuild --bloom-only bucket /opt/splunk/var/lib/splunk/proxy/db/db_1327467837_1327451635_11 took 2635.6 milliseconds 05-08-2012 09:55:05.173 -0500 INFO  ProcessTracker - (child_3__Fsck)  Fsck
- Rebuild --bloom-only bucket /opt/splunk/var/lib/splunk/proxy/db/db_1327451634_1327435722_10 took 3.535 seconds 05-08-2012 09:55:19.568 -0500 INFO  ProcessTracker - (child_4__Fsck)  Fsck
- Rebuild --bloom-only bucket /opt/splunk/var/lib/splunk/proxy/db/db_1327435721_1327426983_9 took 3.306 seconds
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 08 May 2012 15:51:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Create-bloom-filter-after-the-fact/m-p/45352#M572</guid>
      <dc:creator>supersleepwalke</dc:creator>
      <dc:date>2012-05-08T15:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: Create bloom filter after the fact</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Create-bloom-filter-after-the-fact/m-p/45353#M573</link>
      <description>&lt;P&gt;Probably an easier way to do this without editing configs would be to run the fsck rebuild process manually as per;&lt;/P&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/Splunk/4.3.2/admin/HowSplunkstoresindexes#Troubleshoot_your_buckets" target="_blank"&gt;http://docs.splunk.com/Documentation/Splunk/4.3.2/admin/HowSplunkstoresindexes#Troubleshoot_your_buckets&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 11:47:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Create-bloom-filter-after-the-fact/m-p/45353#M573</guid>
      <dc:creator>Drainy</dc:creator>
      <dc:date>2020-09-28T11:47:04Z</dc:date>
    </item>
  </channel>
</rss>

