SOLR-6679: comment out suggester in stock config due to long startup times

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1638010 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yonik Seeley 2014-11-11 01:43:47 +00:00
parent 6639fc546a
commit 6270a1fc13
2 changed files with 11 additions and 3 deletions

View File

@ -278,6 +278,10 @@ Bug Fixes
* SOLR-6721: ZkController.ensureReplicaInLeaderInitiatedRecovery puts replica
in local map before writing to ZK. (shalin)
* SOLR-6679: Remove suggester component from stock solrconfig.xml since
it caused long startup times on lage indexes even when it wasn't used.
(yonik)
Optimizations
----------------------

View File

@ -1441,11 +1441,12 @@
</arr>
</requestHandler>
<!-- This causes long startup times on big indexes, even when never used. See SOLR-6679
<searchComponent name="suggest" class="solr.SuggestComponent">
<lst name="suggester">
<lst name="suggester">
<str name="name">mySuggester</str>
<str name="lookupImpl">FuzzyLookupFactory</str> <!-- org.apache.solr.spelling.suggest.fst -->
<str name="dictionaryImpl">DocumentDictionaryFactory</str> <!-- org.apache.solr.spelling.suggest.HighFrequencyDictionaryFactory -->
<str name="lookupImpl">FuzzyLookupFactory</str>
<str name="dictionaryImpl">DocumentDictionaryFactory</str>
<str name="field">cat</str>
<str name="weightField">price</str>
<str name="suggestAnalyzerFieldType">string</str>
@ -1461,6 +1462,9 @@
<str>suggest</str>
</arr>
</requestHandler>
-->
<!-- Term Vector Component
http://wiki.apache.org/solr/TermVectorComponent