You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Hoss Man (JIRA)" <ji...@apache.org> on 2012/06/15 19:34:42 UTC

[jira] [Created] (SOLR-3548) some queries produced by built in QParsers are not .equals() to themselves

Hoss Man created SOLR-3548:
------------------------------

             Summary: some queries produced by built in QParsers are not .equals() to themselves
                 Key: SOLR-3548
                 URL: https://issues.apache.org/jira/browse/SOLR-3548
             Project: Solr
          Issue Type: Bug
            Reporter: Hoss Man
            Assignee: Hoss Man
            Priority: Blocker
             Fix For: 4.0, 3.6.1


working on SOLR-3522 i discovered that in some cases Solr is producing queries that aren't equals to themselves, so they can't be cached.

So far the only observed problem is in func strdist, but i want to make sure we have an exhaustive test of this in case there are others

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] [Updated] (SOLR-3548) some queries produced by built in QParsers are not .equals() to themselves

Posted by "Hoss Man (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SOLR-3548?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Hoss Man updated SOLR-3548:
---------------------------

    Attachment: SOLR-3548.patch

it took a lot longer then i though, but here is a patch that adds QueryUtils checking against (at least one of) the Query objects produced by every default QParser and ValueSourceParser.  It includes a future proofing "testCoverage" that sets a bit informing an AfterClass method to assert that all of the default parsers were tested so we don't risk this probably again the next time someone adds a new parsers.

Currently 4 methods are failing, indicating the following problems...

* strdist func - identical query strings don't produce equals() queries
* join qparser - clone w/diff boost still has equals hashCode
* bbox qparser - clone w/diff boost still has equals hashCode
* geofilt qparser - clone w/diff boost still has equals hashCode

the hashCode equality isn't the end of the world, but it suggests a really poor hashCode impl (that evidently doesn't call super since Query.hashCode already handles the boost)


                
> some queries produced by built in QParsers are not .equals() to themselves
> --------------------------------------------------------------------------
>
>                 Key: SOLR-3548
>                 URL: https://issues.apache.org/jira/browse/SOLR-3548
>             Project: Solr
>          Issue Type: Bug
>            Reporter: Hoss Man
>            Assignee: Hoss Man
>            Priority: Blocker
>             Fix For: 4.0, 3.6.1
>
>         Attachments: SOLR-3548.patch, SOLR-3548.patch
>
>
> working on SOLR-3522 i discovered that in some cases Solr is producing queries that aren't equals to themselves, so they can't be cached.
> So far the only observed problem is in func strdist, but i want to make sure we have an exhaustive test of this in case there are others

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] [Updated] (SOLR-3548) some queries produced by builtin QParsers do not satisfy QueryUtils checks

Posted by "Hoss Man (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SOLR-3548?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Hoss Man updated SOLR-3548:
---------------------------

    Summary: some queries produced by builtin QParsers do not satisfy QueryUtils checks  (was: some queries produced by built in QParsers are not .equals() to themselves)
    
> some queries produced by builtin QParsers do not satisfy QueryUtils checks
> --------------------------------------------------------------------------
>
>                 Key: SOLR-3548
>                 URL: https://issues.apache.org/jira/browse/SOLR-3548
>             Project: Solr
>          Issue Type: Bug
>            Reporter: Hoss Man
>            Assignee: Hoss Man
>            Priority: Blocker
>             Fix For: 4.0, 3.6.1
>
>         Attachments: SOLR-3548.patch, SOLR-3548.patch
>
>
> working on SOLR-3522 i discovered that in some cases Solr is producing queries that aren't equals to themselves, so they can't be cached.
> So far the only observed problem is in func strdist, but i want to make sure we have an exhaustive test of this in case there are others

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] [Updated] (SOLR-3548) some queries produced by builtin QParsers do not satisfy QueryUtils checks

Posted by "Hoss Man (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SOLR-3548?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Hoss Man updated SOLR-3548:
---------------------------

    Attachment: SOLR-3548.patch

Fixed JoinQuery and SpatialDistanceQuery classes to consult super.equals() and super.hashCode() in their corrisponding methods, and added completely new equals/hashCode impls to JaroWinklerDistance, NGramDistance, and LevensteinDistance (which never had them before aparently).

This gets all the new tests passing
                
> some queries produced by builtin QParsers do not satisfy QueryUtils checks
> --------------------------------------------------------------------------
>
>                 Key: SOLR-3548
>                 URL: https://issues.apache.org/jira/browse/SOLR-3548
>             Project: Solr
>          Issue Type: Bug
>            Reporter: Hoss Man
>            Assignee: Hoss Man
>            Priority: Blocker
>             Fix For: 4.0, 3.6.1
>
>         Attachments: SOLR-3548.patch, SOLR-3548.patch, SOLR-3548.patch
>
>
> working on SOLR-3522 i discovered that in some cases Solr is producing queries that aren't equals to themselves, so they can't be cached.
> So far the only observed problem is in func strdist, but i want to make sure we have an exhaustive test of this in case there are others

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] [Updated] (SOLR-3548) some queries produced by built in QParsers are not .equals() to themselves

Posted by "Hoss Man (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SOLR-3548?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Hoss Man updated SOLR-3548:
---------------------------

    Attachment: SOLR-3548.patch

test case
                
> some queries produced by built in QParsers are not .equals() to themselves
> --------------------------------------------------------------------------
>
>                 Key: SOLR-3548
>                 URL: https://issues.apache.org/jira/browse/SOLR-3548
>             Project: Solr
>          Issue Type: Bug
>            Reporter: Hoss Man
>            Assignee: Hoss Man
>            Priority: Blocker
>             Fix For: 4.0, 3.6.1
>
>         Attachments: SOLR-3548.patch
>
>
> working on SOLR-3522 i discovered that in some cases Solr is producing queries that aren't equals to themselves, so they can't be cached.
> So far the only observed problem is in func strdist, but i want to make sure we have an exhaustive test of this in case there are others

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] [Resolved] (SOLR-3548) some queries produced by builtin QParsers do not satisfy QueryUtils checks

Posted by "Hoss Man (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SOLR-3548?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Hoss Man resolved SOLR-3548.
----------------------------

       Resolution: Fixed
    Fix Version/s:     (was: 3.6.1)
                   5.0

Committed revision 1351839. - trunk
Committed revision 1351843. - 4x

                
> some queries produced by builtin QParsers do not satisfy QueryUtils checks
> --------------------------------------------------------------------------
>
>                 Key: SOLR-3548
>                 URL: https://issues.apache.org/jira/browse/SOLR-3548
>             Project: Solr
>          Issue Type: Bug
>            Reporter: Hoss Man
>            Assignee: Hoss Man
>            Priority: Blocker
>             Fix For: 4.0, 5.0
>
>         Attachments: SOLR-3548.patch, SOLR-3548.patch, SOLR-3548.patch
>
>
> working on SOLR-3522 i discovered that in some cases Solr is producing queries that aren't equals to themselves, so they can't be cached.
> So far the only observed problem is in func strdist, but i want to make sure we have an exhaustive test of this in case there are others

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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