On 6/19/2018 5:47 PM, Sushant Vengurlekar wrote:
Based on your suggestion I moved the helpers to be under configsets/conf so
my new folder structure looks
-configsets
         - conf
               helpers
                   synonyms_vendors.txt
         - collection1
             -conf
                 schema.xml
                 solrconfig.xml

That is not what was recommended.

Three things to note about why your attempt didn't work: 1) ZooKeeper does not support ".." in znode path names.  2) Only information in ZK is used for SolrCloud configs, never anything on your disk.  3) Only information in the named configset (presumably collection1 in this case) is uploaded to ZK.

This is what you need to have in configsets, that must be uploaded to zookeeper:

- configsets
  - collection1
    - conf
      schema.xml
      solrconfig.xml
      - helpers
        synonyms_vendors.txt

The filename reference in the schema must be "helpers/synonyms_vendors.txt" and not the version with ".." in it.

Thanks,
Shawn

Reply via email to