<?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: How to set up Indexes on Indexers in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-to-set-up-Indexes-on-Indexers/m-p/491741#M84026</link>
    <description>&lt;P&gt;This is a good answer.  I would add a strong recommendation to put your indexes.conf file into a custom app (myorg_all_indexes, for example) and install that app on all indexers.  This helps avoid errors from making changes manually.&lt;/P&gt;</description>
    <pubDate>Wed, 30 Sep 2020 02:27:31 GMT</pubDate>
    <dc:creator>richgalloway</dc:creator>
    <dc:date>2020-09-30T02:27:31Z</dc:date>
    <item>
      <title>How to set up Indexes on Indexers</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-set-up-Indexes-on-Indexers/m-p/491739#M84024</link>
      <description>&lt;P&gt;HI&lt;/P&gt;

&lt;P&gt;We have installed a SH and 4 INDEXERS(Non Clustered). We have installed our app to the SH only with our indexers=mlc_live and or datamodels.&lt;BR /&gt;
We have set up the forwarders to send data to the INDEXERS, however the SH is giving us errors saying &lt;/P&gt;

&lt;P&gt;"Search peer hp400srv_6000_INDEXER1 has the following message: Received event for unconfigured/disabled/deleted index=mlc_live with source="source::/net/dell429srv/dell429srv1/apps/QCST_RSAT_v3.1.43_SEC1/logs/traces/mxtiming_286120_dell429srv_80849.log" host="host::NICKNAME" sourcetype="sourcetype::MX_TIMING2". &lt;/P&gt;

&lt;P&gt;So the INDEXERS dont know about the Index=MLC_LIVE, so 3 questions&lt;/P&gt;

&lt;P&gt;Do i manually set up indexes on indexers?&lt;BR /&gt;
How do i manage my APP on my SH, so changes get passed over to all indexers?&lt;BR /&gt;
Should i use the Deployer to move changes I make to get pushed over to the INDEXERS, like datamodels changes etc...?&lt;/P&gt;

&lt;P&gt;Cheers in advance&lt;BR /&gt;
Rob&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 02:21:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-set-up-Indexes-on-Indexers/m-p/491739#M84024</guid>
      <dc:creator>robertlynch2020</dc:creator>
      <dc:date>2020-09-30T02:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to set up Indexes on Indexers</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-set-up-Indexes-on-Indexers/m-p/491740#M84025</link>
      <description>&lt;P&gt;Since your environment is not clustered, you will want to create the index on each indexer. You can do this via the UI or from the CLI. Look at the Wiki below:&lt;/P&gt;

&lt;P&gt;Splunk Web:&lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;In Splunk Web, navigate to Settings &amp;gt; Indexes and click New.&lt;/LI&gt;
&lt;LI&gt;To create a new index, enter:&lt;/LI&gt;
&lt;LI&gt;A name for the index. User-defined index names must consist of only numbers, lowercase letters, underscores, and hyphens. They cannot begin with an underscore or hyphen, or contain the word "kvstore".&lt;/LI&gt;
&lt;LI&gt;The index data type. For event data, click Events. This is the default data type.&lt;/LI&gt;
&lt;LI&gt;The path locations for index data storage:
 Home path. Leave blank for default $SPLUNK_DB/&lt;INDEX_NAME&gt;/db
 Cold path. Leave blank for default $SPLUNK_DB/&lt;INDEX_NAME&gt;/colddb
 Thawed path. Leave blank for default $SPLUNK_DB/&lt;INDEX_NAME&gt;/thaweddb&lt;/INDEX_NAME&gt;&lt;/INDEX_NAME&gt;&lt;/INDEX_NAME&gt;&lt;/LI&gt;
&lt;LI&gt;Enable/disable data integrity check.&lt;/LI&gt;
&lt;LI&gt;The maximum size of the entire index. Defaults to 500000MB.&lt;/LI&gt;
&lt;LI&gt;The maximum size of each index bucket. When setting the maximum size, use auto_high_volume for high volume indexes (such as the main index); otherwise, use auto.&lt;/LI&gt;
&lt;LI&gt;The frozen archive path. Set this field if you want to archive frozen buckets. For information on bucket archiving, see Archive indexed data.&lt;/LI&gt;
&lt;LI&gt;The app in which the index resides.&lt;/LI&gt;
&lt;LI&gt;The tsidx retention policy. See Reduce tsidx usage.
 For more information on index settings, see Configure index storage.&lt;/LI&gt;
&lt;LI&gt;Click Save.&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;CLI:&lt;BR /&gt;
Edit indexes.conf&lt;/P&gt;

&lt;P&gt;To add a new index, add a stanza to indexes.conf in $SPLUNK_HOME/etc/system/local, identified by the name of the new index. For example:&lt;/P&gt;

&lt;P&gt;[newindex]&lt;BR /&gt;
homePath=&lt;BR /&gt;
coldPath=&lt;BR /&gt;
thawedPath=&lt;BR /&gt;
...&lt;BR /&gt;
For information on index settings, see Configure index storage and the indexes.conf spec file.&lt;/P&gt;

&lt;P&gt;Note: User-defined index names must consist of only numbers, lowercase letters, underscores, and hyphens. They cannot begin with an underscore or hyphen, or contain the word "kvstore".&lt;/P&gt;

&lt;P&gt;You must restart the indexer after editing indexes.conf.&lt;/P&gt;

&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/7.3.1/Indexer/Setupmultipleindexes" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/7.3.1/Indexer/Setupmultipleindexes&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 02:27:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-set-up-Indexes-on-Indexers/m-p/491740#M84025</guid>
      <dc:creator>jdhunter</dc:creator>
      <dc:date>2020-09-30T02:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to set up Indexes on Indexers</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-set-up-Indexes-on-Indexers/m-p/491741#M84026</link>
      <description>&lt;P&gt;This is a good answer.  I would add a strong recommendation to put your indexes.conf file into a custom app (myorg_all_indexes, for example) and install that app on all indexers.  This helps avoid errors from making changes manually.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 02:27:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-set-up-Indexes-on-Indexers/m-p/491741#M84026</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-09-30T02:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to set up Indexes on Indexers</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-set-up-Indexes-on-Indexers/m-p/491742#M84027</link>
      <description>&lt;P&gt;Excellent point Rich! Since he isn't running a clustered environment, he could use a Deployment Server to deliver his custom app to the indexers and avoid having to move it to each.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2019 16:07:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-set-up-Indexes-on-Indexers/m-p/491742#M84027</guid>
      <dc:creator>jdhunter</dc:creator>
      <dc:date>2019-10-01T16:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to set up Indexes on Indexers</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-set-up-Indexes-on-Indexers/m-p/491743#M84028</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;It is looking like i will use the Deployment Server&lt;BR /&gt;
I will give it a go and get back. Just to ask one more question.&lt;/P&gt;

&lt;P&gt;Will the Deployment Server be able to push out real time updates, as we update the APP in production daily. So we need to push out updates to data-models specifically.&lt;/P&gt;

&lt;P&gt;Thanks for the help to all&lt;/P&gt;

&lt;P&gt;Rob&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2019 17:37:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-set-up-Indexes-on-Indexers/m-p/491743#M84028</guid>
      <dc:creator>robertlynch2020</dc:creator>
      <dc:date>2019-10-01T17:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to set up Indexes on Indexers</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-set-up-Indexes-on-Indexers/m-p/491744#M84029</link>
      <description>&lt;P&gt;Clients will check in periodically and compare the app on the DS to their app. If there is a change, the client will download.&lt;/P&gt;

&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/7.3.1/Updating/Howdeploymentupdateshappen"&gt;https://docs.splunk.com/Documentation/Splunk/7.3.1/Updating/Howdeploymentupdateshappen&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Process for setting up the DS:&lt;/P&gt;

&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/7.3.1/Updating/Planadeployment"&gt;https://docs.splunk.com/Documentation/Splunk/7.3.1/Updating/Planadeployment&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2019 19:30:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-set-up-Indexes-on-Indexers/m-p/491744#M84029</guid>
      <dc:creator>jdhunter</dc:creator>
      <dc:date>2019-10-01T19:30:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to set up Indexes on Indexers</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-set-up-Indexes-on-Indexers/m-p/491745#M84030</link>
      <description>&lt;P&gt;Data models are stored on search heads, not indexers.  The data saved by DMs is stored on the indexers.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2019 20:40:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-set-up-Indexes-on-Indexers/m-p/491745#M84030</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2019-10-01T20:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to set up Indexes on Indexers</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-set-up-Indexes-on-Indexers/m-p/491746#M84031</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;Thanks for your help&lt;/P&gt;

&lt;P&gt;We are seeing that the DataModels are stored on the Indexers not the search heads.&lt;/P&gt;

&lt;P&gt;/splunk/var/lib/splunk/mlc_live/datamodel_summary &lt;/P&gt;

&lt;P&gt;Cheers&lt;BR /&gt;
Rob&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 02:30:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-set-up-Indexes-on-Indexers/m-p/491746#M84031</guid>
      <dc:creator>robertlynch2020</dc:creator>
      <dc:date>2020-09-30T02:30:28Z</dc:date>
    </item>
  </channel>
</rss>

