[ 
https://issues.apache.org/jira/browse/SOLR-5544?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13846180#comment-13846180
 ] 

MANISH KUMAR edited comment on SOLR-5544 at 12/12/13 9:12 AM:
--------------------------------------------------------------

[~markus17] There is a check on whether FVH has been enabled for the specific 
field or not : 

   boolean useFvhParam = params.getFieldBool( fieldName, 
HighlightParams.USE_FVH, false );
    if( !useFvhParam ) return false;

Seems there is a bug which is causing  params.getFieldBool to return true when 
it should have returned false as none of the fields in my schema explicitly 
mentions to use FVH.


was (Author: manish.onl...@gmail.com):
There is a check on whether FVH has been enabled for the specific field or not 
: 

   boolean useFvhParam = params.getFieldBool( fieldName, 
HighlightParams.USE_FVH, false );
    if( !useFvhParam ) return false;

Seems there is a bug which is causing  params.getFieldBool to return true when 
it should have returned false as none of the fields in my schema explicitly 
mentions to use FVH.

> Log spamming by DefaultSolrHighlighter
> --------------------------------------
>
>                 Key: SOLR-5544
>                 URL: https://issues.apache.org/jira/browse/SOLR-5544
>             Project: Solr
>          Issue Type: Improvement
>          Components: highlighter
>    Affects Versions: 4.0
>            Reporter: MANISH KUMAR
>            Priority: Minor
>
> In DefaultSolrHighlighter.java
> The method useFastVectorHighlighter has
>  log.warn( "Solr will use Highlighter instead of FastVectorHighlighter 
> because {} field does not store TermPositions and TermOffsets.", fieldName );
> Above method gets called each field and there could be cases where 
> TermPositions & TermOffsets are not stored.
> The above line causes huge spamming of logs.
> It should be at max a DEBUG level log which will give flexibility of turning 
> it off in production environments.



--
This message was sent by Atlassian JIRA
(v6.1.4#6159)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org

Reply via email to