You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "ASF subversion and git services (JIRA)" <ji...@apache.org> on 2015/05/23 01:46:18 UTC

[jira] [Commented] (SOLR-7335) Multivalue field that is boosted on indexing time has wrong norm.

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

ASF subversion and git services commented on SOLR-7335:
-------------------------------------------------------

Commit 1681249 from hossman@apache.org in branch 'dev/trunk'
[ https://svn.apache.org/r1681249 ]

SOLR-7335: Fix doc boosts to no longer be multiplied in each field value in multivalued fields that are not used in copyFields

> Multivalue field that is boosted on indexing time has wrong norm.
> -----------------------------------------------------------------
>
>                 Key: SOLR-7335
>                 URL: https://issues.apache.org/jira/browse/SOLR-7335
>             Project: Solr
>          Issue Type: Bug
>    Affects Versions: 4.10, 5.0, 5.1
>            Reporter: Shingo Sasaki
>            Assignee: Hoss Man
>            Priority: Critical
>         Attachments: SOLR-7335.patch
>
>
> Multivalue field has wrong norm when the field value is tokenized, the field or document is boosted, and the field is not source of copyField.
> {noformat}
> $ java -jar start.jar &
> $ echo '{
> "add": {
>   "doc": {
>     "id":"no-boosted",
>     "features": ["a","b","c"],
>     "dyn_not_copied_txt": ["a","b","c"]
>   }
> },
> "add": {
>   "boost": 10,
>   "doc": {
>     "id":"boosted",
>     "features": ["a","b","c"],
>     "dyn_not_copied_txt": ["a","b","c"]
>   }
> }}' > test.json
> $ curl 'http://localhost:8983/solr/update/json?commit=true' -H 'Content-type:application/json' --data-binary @test.json
> {"responseHeader":{"status":0,"QTime":41}}
> $ curl 'http://localhost:8983/solr/select' -d 'omitHeader=true&wt=json&indent=on&q=*:*&fl=id,norm(features),norm(dyn_not_copied_txt)'
> {
>   "response":{"numFound":2,"start":0,"docs":[
>       {
>         "id":"no-boosted",
>         "norm(features)":0.5,
>         "norm(dyn_not_copied_txt)":0.5},
>       {
>         "id":"boosted",
>         "norm(features)":5.0,
>         "norm(dyn_not_copied_txt)":512.0}]
>   }}
> {noformat}
> In the above example, "features" is source of copyField. On the other hand, "dyn_not_copied_txt" is not so. 
> "features" and "dyn_not_copied_txt" have the same type attribute (type="text_general"), the same values ( ["a","b","c"] ) and the same boost. So, both fields must have the same norm in the document.
> But, in boosted document only,  the field that is not copied have too larger norm.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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