<?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 Data Ingestion to Cluster in Splunk Dev</title>
    <link>https://community.splunk.com/t5/Splunk-Dev/Data-Ingestion-to-Cluster/m-p/437866#M7920</link>
    <description>&lt;P&gt;Hi All,&lt;BR /&gt;
need help on data ingestion to cluster&lt;BR /&gt;
i was trying to ingest data to indexer cluster, built on AWS linux,&lt;BR /&gt;
cluster config - 1master, 1 sh, 2 idx, 1 uf&lt;BR /&gt;
first ingested single file to main index but unable to ingest to newly created  index&lt;/P&gt;</description>
    <pubDate>Thu, 31 Jan 2019 02:47:36 GMT</pubDate>
    <dc:creator>raghu0463</dc:creator>
    <dc:date>2019-01-31T02:47:36Z</dc:date>
    <item>
      <title>Data Ingestion to Cluster</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Data-Ingestion-to-Cluster/m-p/437866#M7920</link>
      <description>&lt;P&gt;Hi All,&lt;BR /&gt;
need help on data ingestion to cluster&lt;BR /&gt;
i was trying to ingest data to indexer cluster, built on AWS linux,&lt;BR /&gt;
cluster config - 1master, 1 sh, 2 idx, 1 uf&lt;BR /&gt;
first ingested single file to main index but unable to ingest to newly created  index&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jan 2019 02:47:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Data-Ingestion-to-Cluster/m-p/437866#M7920</guid>
      <dc:creator>raghu0463</dc:creator>
      <dc:date>2019-01-31T02:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: Data Ingestion to Cluster</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Data-Ingestion-to-Cluster/m-p/437867#M7921</link>
      <description>&lt;P&gt;input.conf&lt;BR /&gt;
[monitor:///home/ec2-user/Test]&lt;BR /&gt;
disabled = false&lt;BR /&gt;
index = Test_index&lt;/P&gt;

&lt;P&gt;output.conf&lt;BR /&gt;
    [tcpout]&lt;BR /&gt;
    defaultGroup = default-autolb-group&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[tcpout:default-autolb-group]
disabled = false
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;server = 1.2.3.4:9997,5.6.7.8:9997&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jan 2019 02:56:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Data-Ingestion-to-Cluster/m-p/437867#M7921</guid>
      <dc:creator>raghu0463</dc:creator>
      <dc:date>2019-01-31T02:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: Data Ingestion to Cluster</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Data-Ingestion-to-Cluster/m-p/437868#M7922</link>
      <description>&lt;P&gt;There could be a number of things wrong here, and we'll need more information to determine what the cause is.  There are a number of ways to do this, but here are some steps that I recommend trying.&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;Let's start in order from the file to the indexer:&lt;/STRONG&gt;&lt;BR /&gt;
1. Confirm the permissions on the file are configured to allow Splunk to read the file&lt;BR /&gt;
2. Confirm the file contains &lt;EM&gt;new&lt;/EM&gt; data that &lt;EM&gt;has not&lt;/EM&gt; already been read-in by Splunk.  If you're trying to ingest the same file twice, Splunk will not do this because it's already marked as read in the fish bucket&lt;BR /&gt;
3. If this is just test data, add a new line/new event to the file to be read in&lt;BR /&gt;
4. Use btprobe to remove the file from the fish bucket so Splunk will read it in again &lt;CODE&gt;./btprobe -d SPLUNK_HOME/var/lib/splunk/fishbucket/splunk_private_db --file /home/ec2-user/Test --reset&lt;/CODE&gt;&lt;BR /&gt;
5. Double-check your monitor stanza, keep in mind that it is case-sensitive&lt;/P&gt;

&lt;P&gt;Is this file being read in by the UF?  &lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;If so, run searches for &lt;CODE&gt;index=_* host=&amp;lt;UF hostname&amp;gt; error OR warn&lt;/CODE&gt; and &lt;CODE&gt;index=_* host=&amp;lt;UF hostname&amp;gt; "/home/ec2-user/Test"&lt;/CODE&gt; and share any noteworthy results, or if there is a lack of results, that is noteworthy too.&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;&lt;STRONG&gt;On the indexers:&lt;/STRONG&gt;&lt;BR /&gt;
1. Confirm that the new index is properly configured&lt;BR /&gt;
2. Are you currently receiving any error messages in the top right corner of the Splunk Web UI?&lt;BR /&gt;&lt;BR /&gt;
3. Attempt to cut the UF out of the equation by dropping the file on one of your indexers using a oneshot &lt;CODE&gt;./splunk add oneshot /var/log/applog -index Test_Index&lt;/CODE&gt; and see if/how that works (not as a permanent solution, but as a troubleshooting step to isolate the issue)&lt;BR /&gt;
4. Run a searches for &lt;CODE&gt;index=_internal host IN (&amp;lt;idx1&amp;gt;,&amp;lt;idx2&amp;gt;) error OR warn&lt;/CODE&gt; and &lt;CODE&gt;index=_internal host IN (&amp;lt;idx1&amp;gt;,&amp;lt;idx2&amp;gt;) "/home/ec2-user/Test"&lt;/CODE&gt; and share any noteworthy results.&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;On the search head:&lt;/STRONG&gt;&lt;BR /&gt;
1. Be sure to run searches for all time, in case there is an issue with time stamp extraction &lt;CODE&gt;index=Test_Index earliest=1 latest=now()&lt;/CODE&gt;&lt;BR /&gt;
2. Run a search to make sure the data didn't somehow end up somewhere else &lt;CODE&gt;index=* source="/home/ec2-user/Test" earliest=1 latest=now()&lt;/CODE&gt;&lt;BR /&gt;
3. Finally, let's look for any internal events related to this file &lt;CODE&gt;index=_* source="/home/ec2-user/Test" earliest=1 latest=now()&lt;/CODE&gt; and note which host they're coming from if you've attempted to read this file in from multiple hosts.&lt;/P&gt;

&lt;P&gt;Report back with your findings and we can continue to move forward to narrow the troubleshooting and identify the root cause(s).&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jan 2019 16:41:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Data-Ingestion-to-Cluster/m-p/437868#M7922</guid>
      <dc:creator>fverdi</dc:creator>
      <dc:date>2019-01-31T16:41:34Z</dc:date>
    </item>
    <item>
      <title>Re: Data Ingestion to Cluster</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Data-Ingestion-to-Cluster/m-p/437869#M7923</link>
      <description>&lt;P&gt;Hi Fverdi, &lt;BR /&gt;
Thanks for your response which helped me to debug in the right path.&lt;/P&gt;

&lt;P&gt;-- The problem is resolved I think the issue is I was trying to Ingest the same data file with different name. &lt;BR /&gt;
-- I opened the port 9079 &lt;/P&gt;

&lt;P&gt;And I have one more question, how do I need to check already ingested file names in Fishbucket please from command line ? &lt;/P&gt;

&lt;P&gt;Thanks,&lt;BR /&gt;
Raghu&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 02:10:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Data-Ingestion-to-Cluster/m-p/437869#M7923</guid>
      <dc:creator>raghu0463</dc:creator>
      <dc:date>2019-02-01T02:10:59Z</dc:date>
    </item>
  </channel>
</rss>

