- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
update SolrConfig.xml without recreating Collection
- Labels:
-
Cloudera Search
Created ‎03-21-2017 06:34 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Currently we are using CDH 5.4.8 with Solr 4.4 version. in the SolrConfig.xml file we like to change autocommit field for soft commit and hard commit. I found solution like deleting the collection and recreated it. But we have huge amount of data on solr colllection. We really don't want to delete and recreate it. Is there option is available to just update SolrConfig.xml alone with out deleted the collection or is there any possibility there to take snapshot of the current collection and restore it.
Created ‎03-22-2017 05:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
solrctl allow you to "update" the config stored in ZK.
Maybe after that you could call a "RELOAD" of that collection using Solr collection API ?
I have not tried it, but I would definitely investigate on that direction if I had this kind of requirement.
Created ‎03-22-2017 03:00 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
solrctl instancedir --update collection1 /path/to/collection1
solrctl collection --reload collection
-pd
Created ‎03-22-2017 05:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
solrctl allow you to "update" the config stored in ZK.
Maybe after that you could call a "RELOAD" of that collection using Solr collection API ?
I have not tried it, but I would definitely investigate on that direction if I had this kind of requirement.
Created ‎03-22-2017 03:00 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
solrctl instancedir --update collection1 /path/to/collection1
solrctl collection --reload collection
-pd
