<?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>question Re: Configuring SOLR as the Indexing Backend for the Graph Repository in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Configuring-SOLR-as-the-Indexing-Backend-for-the-Graph/m-p/125844#M47365</link>
    <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/2504/ssainath.html" nodeid="2504"&gt;@ssainath&lt;/A&gt; &amp;amp; &lt;A rel="user" href="https://community.cloudera.com/users/2229/jamesjones.html" nodeid="2229"&gt;@james.jones&lt;/A&gt; thank you for your prompt replies! &lt;/P&gt;</description>
    <pubDate>Thu, 01 Dec 2016 03:16:18 GMT</pubDate>
    <dc:creator>b_arshad</dc:creator>
    <dc:date>2016-12-01T03:16:18Z</dc:date>
    <item>
      <title>Configuring SOLR as the Indexing Backend for the Graph Repository</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Configuring-SOLR-as-the-Indexing-Backend-for-the-Graph/m-p/125841#M47362</link>
      <description>&lt;P&gt;I am trying to install a basic instance of Atlas with
embedded HBase and Solr.&lt;/P&gt;&lt;P&gt;I am following the installation guide: &lt;A href="http://atlas.incubator.apache.org/InstallationSteps.html"&gt;http://atlas.incubator.apache.org/InstallationSteps.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;In the section titled: Configuring SOLR as the Indexing
Backend for the Graph Repository&lt;/P&gt;&lt;P&gt;I can confirm I have two solr nodes running in the
solrcloud. &lt;/P&gt;&lt;P&gt;For the following step:&lt;/P&gt;&lt;P&gt;"first copy the required configuration files from
ATLAS_HOME/conf/solr on the ATLAS instance host to the Solr instance host.
SOLR_CONF in the below mentioned commands refer to the directory where the solr
configuration files have been copied to on Solr host" &lt;/P&gt;&lt;P&gt;I have the following configuration files in the
ATLAS_HOME/conf: &lt;/P&gt;&lt;P&gt;currency.xml, protwords.txt, solrconfig.xml,
synonyms.txt, lang, schema.xml and stopwords.txt&lt;/P&gt;&lt;P&gt;Do I need to copy all of the files above? It does not
mention any specific files to copy. Any help will be highly appreciated. &lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2016 01:12:40 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Configuring-SOLR-as-the-Indexing-Backend-for-the-Graph/m-p/125841#M47362</guid>
      <dc:creator>b_arshad</dc:creator>
      <dc:date>2016-11-29T01:12:40Z</dc:date>
    </item>
    <item>
      <title>Re: Configuring SOLR as the Indexing Backend for the Graph Repository</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Configuring-SOLR-as-the-Indexing-Backend-for-the-Graph/m-p/125842#M47363</link>
      <description>&lt;P&gt;@Bilal The XML and text files you mentioned would be in ATLAS_HOME/conf/solr folder. You may copy the complete directory to Solr instance and use the directory while creating indices. For example , once you copy the ATLAS_HOME/conf/solr directory to SOLR_HOME/solr , you may do $SOLR_BIN/solr create -c vertex_index -d SOLR_HOME/solr -shards #numShards -replicationFactor #replicationFactor&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2016 01:34:46 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Configuring-SOLR-as-the-Indexing-Backend-for-the-Graph/m-p/125842#M47363</guid>
      <dc:creator>ssainath</dc:creator>
      <dc:date>2016-11-29T01:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: Configuring SOLR as the Indexing Backend for the Graph Repository</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Configuring-SOLR-as-the-Indexing-Backend-for-the-Graph/m-p/125843#M47364</link>
      <description>&lt;A rel="user" href="https://community.cloudera.com/users/14078/barshad.html" nodeid="14078"&gt;@Bilal Arshad&lt;/A&gt;&lt;P&gt;All of the files in ATLAS_HOME/conf/solr are probably needed in a directory on the Solr host so that when you run the &lt;STRONG&gt;solr&lt;/STRONG&gt; &lt;STRONG&gt;create&lt;/STRONG&gt; command it will upload those files into zookeeper for Solr to access for that collection (no matter which host Solr is running on). &lt;/P&gt;&lt;P&gt;The files in this directory are as follows (from the link you provided)&lt;/P&gt;&lt;PRE&gt;   |- solr
      |- currency.xml
      |- lang
         |- stopwords_en.txt
      |- protowords.txt
      |- schema.xml
      |- solrconfig.xml
      |- stopwords.txt
      |- synonyms.txt&lt;/PRE&gt;&lt;P&gt;solrconfig.xml is has configuration parameters such as what rest endpoints are available for the collection. &lt;/P&gt;&lt;P&gt;schema.xml describes the fields and how they are handled (indexed, stored, and so forth). &lt;/P&gt;&lt;P&gt;The other files are used by the schema.xml (assuming they are used) as they should be listed/referenced in the schema.xml. So, for this collection, I assume the following are referenced from the schema:&lt;/P&gt;&lt;P&gt;synonyms.txt --- listing words that can be searched and considered equivalent (e.g. car and automobile)&lt;/P&gt;&lt;P&gt;stopwords.txt -- listing highly common words that will not be indexed such as "the" and "a"&lt;/P&gt;&lt;P&gt;protowords.xml -- listing words that should not be stemmed (broken into equivalent root words)&lt;/P&gt;&lt;P&gt;stopwords_en.txt -- same as stopwords above but specific for English.&lt;/P&gt;&lt;P&gt;currency.xml -- money exchange rates&lt;/P&gt;&lt;P&gt;Even if all of these files are not used, it shouldn't hurt anything including them.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2016 01:41:04 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Configuring-SOLR-as-the-Indexing-Backend-for-the-Graph/m-p/125843#M47364</guid>
      <dc:creator>james_jones</dc:creator>
      <dc:date>2016-11-29T01:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: Configuring SOLR as the Indexing Backend for the Graph Repository</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Configuring-SOLR-as-the-Indexing-Backend-for-the-Graph/m-p/125844#M47365</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/2504/ssainath.html" nodeid="2504"&gt;@ssainath&lt;/A&gt; &amp;amp; &lt;A rel="user" href="https://community.cloudera.com/users/2229/jamesjones.html" nodeid="2229"&gt;@james.jones&lt;/A&gt; thank you for your prompt replies! &lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2016 03:16:18 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Configuring-SOLR-as-the-Indexing-Backend-for-the-Graph/m-p/125844#M47365</guid>
      <dc:creator>b_arshad</dc:creator>
      <dc:date>2016-12-01T03:16:18Z</dc:date>
    </item>
  </channel>
</rss>

