<?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 won't Splunk re-index my data? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Why-won-t-Splunk-re-index-my-data/m-p/11197#M528</link>
    <description>&lt;P&gt;See --reset @  &lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Troubleshooting/CommandlinetoolsforusewithSupport#btprobe"&gt;http://docs.splunk.com/Documentation/Splunk/latest/Troubleshooting/CommandlinetoolsforusewithSupport#btprobe&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 11 Apr 2012 18:19:02 GMT</pubDate>
    <dc:creator>amrit</dc:creator>
    <dc:date>2012-04-11T18:19:02Z</dc:date>
    <item>
      <title>Why won't Splunk re-index my data?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-won-t-Splunk-re-index-my-data/m-p/11191#M522</link>
      <description>&lt;P&gt;I wanted to see how Splunk would index my data, so I configured it to index a few files into a 'test' index.  Now that I have it configured properly, I want to re-index that same data into the 'main' index.  I cleaned the test index - &lt;CODE&gt;./splunk clean eventdata index test&lt;/CODE&gt; - and removed the &lt;CODE&gt;index = test&lt;/CODE&gt; from inputs.conf, but Splunk doesn't automatically re-index the files - why not?&lt;/P&gt;</description>
      <pubDate>Fri, 09 Apr 2010 07:51:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-won-t-Splunk-re-index-my-data/m-p/11191#M522</guid>
      <dc:creator>Mick</dc:creator>
      <dc:date>2010-04-09T07:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: Why won't Splunk re-index my data?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-won-t-Splunk-re-index-my-data/m-p/11192#M523</link>
      <description>&lt;P&gt;removing index=test probably tripped you up.&lt;/P&gt;

&lt;P&gt;the logic for this feature is:&lt;BR /&gt;
if:&lt;BR /&gt;
- indexing a file F&lt;BR /&gt;
- splunkd's last record of F is from time T1&lt;BR /&gt;
- the creation time of the destination index is T2&lt;BR /&gt;
- T1 &amp;lt; T2&lt;BR /&gt;
then:&lt;BR /&gt;
- begin reading F from position 0 again.&lt;BR /&gt;&lt;/P&gt;

&lt;P&gt;i'm assuming you didn't clean index main here, so its creation date is well before our last fishbucket record for that file - thus T1&amp;lt;T2 is false, and we don't re-read the file.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Apr 2010 07:58:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-won-t-Splunk-re-index-my-data/m-p/11192#M523</guid>
      <dc:creator>amrit</dc:creator>
      <dc:date>2010-04-09T07:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: Why won't Splunk re-index my data?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-won-t-Splunk-re-index-my-data/m-p/11193#M524</link>
      <description>&lt;P&gt;even if I leave 'index = test' the files don't get re-read, but based on what you're saying, I would have to create a brand new index for the data to get re-read?  That doesn't make sense to me, I want to add it to my existing index once I'm happy that it will be indexed correctly.  What if I have to tweak settings several times before I get it right, do I need to create a new 'test' index each time?&lt;/P&gt;</description>
      <pubDate>Fri, 09 Apr 2010 08:04:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-won-t-Splunk-re-index-my-data/m-p/11193#M524</guid>
      <dc:creator>Mick</dc:creator>
      <dc:date>2010-04-09T08:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: Why won't Splunk re-index my data?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-won-t-Splunk-re-index-my-data/m-p/11194#M525</link>
      <description>&lt;P&gt;maybe you should RTFM and get it right the first time.  jk!! &lt;span class="lia-unicode-emoji" title=":red_heart:"&gt;❤️&lt;/span&gt;   ...did you clean before you had index=test in the conf?  if you cleaned test, restarted, added index=test, and restarted again, you'll encounter the above fail.  anyway, good point about finalizing in a different index. right now this isn't possible (although, you could add a bogus crcSalt and leave it there forever...), but we can add something.  the idea would be something like "splunk reset filepos /path/to/file", which would use btprobe to zero out our record of the file.  this feature does not exist currently.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Apr 2010 08:22:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-won-t-Splunk-re-index-my-data/m-p/11194#M525</guid>
      <dc:creator>amrit</dc:creator>
      <dc:date>2010-04-09T08:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: Why won't Splunk re-index my data?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-won-t-Splunk-re-index-my-data/m-p/11195#M526</link>
      <description>&lt;P&gt;that would be a very very very good feature to have.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Apr 2010 10:20:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-won-t-Splunk-re-index-my-data/m-p/11195#M526</guid>
      <dc:creator>gkanapathy</dc:creator>
      <dc:date>2010-04-09T10:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: Why won't Splunk re-index my data?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-won-t-Splunk-re-index-my-data/m-p/11196#M527</link>
      <description>&lt;P&gt;i forget one &lt;STRONG&gt;very&lt;/STRONG&gt;. very.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Apr 2010 10:21:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-won-t-Splunk-re-index-my-data/m-p/11196#M527</guid>
      <dc:creator>gkanapathy</dc:creator>
      <dc:date>2010-04-09T10:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: Why won't Splunk re-index my data?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-won-t-Splunk-re-index-my-data/m-p/11197#M528</link>
      <description>&lt;P&gt;See --reset @  &lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Troubleshooting/CommandlinetoolsforusewithSupport#btprobe"&gt;http://docs.splunk.com/Documentation/Splunk/latest/Troubleshooting/CommandlinetoolsforusewithSupport#btprobe&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Apr 2012 18:19:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-won-t-Splunk-re-index-my-data/m-p/11197#M528</guid>
      <dc:creator>amrit</dc:creator>
      <dc:date>2012-04-11T18:19:02Z</dc:date>
    </item>
  </channel>
</rss>

