[jira] [Commented] (LUCENE-6290) Make the query -> filter migration less performance trappy

2015-02-25 Thread ASF subversion and git services (JIRA)

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

ASF subversion and git services commented on LUCENE-6290:
-

Commit 1662203 from [~jpountz] in branch 'dev/trunk'
[ https://svn.apache.org/r1662203 ]

LUCENE-6290: Make the filter -> query migration less trappy.

> Make the query -> filter migration less performance trappy
> --
>
> Key: LUCENE-6290
> URL: https://issues.apache.org/jira/browse/LUCENE-6290
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Adrien Grand
>Assignee: Adrien Grand
> Fix For: Trunk, 5.1
>
> Attachments: LUCENE-6290.patch
>
>
> The filter->query migration might be a bit trappy in terms of performance for 
> our users.
> For instance a FilteredQuery over a TermQuery and a DocValuesRangeFilter 
> should be migrated to a BooleanQuery with a MUST clause for the TermQuery and 
> a FILTER clause for the DocValuesRangeQuery. Performance will be similar 
> since in both case we would use the query to drive the iteration and the 
> filter would only be used to check documents that match the query (we would 
> NOT try to advance the filter iterator).
> However, if you only go half-way through the migration and end up with a 
> FilteredQuery over a TermQuery and a QueryWrapperFilter(DocValuesRangeQuery) 
> then performance will be terrible because this QueryWrapperFilter does not 
> support random-access (which is the way such filters were not too slow 
> before) and hides the approximation support from the DocValuesRangeQuery.



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

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



[jira] [Commented] (LUCENE-6290) Make the query -> filter migration less performance trappy

2015-02-24 Thread Robert Muir (JIRA)

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

Robert Muir commented on LUCENE-6290:
-

I think if QWF can somehow "pass thru" appoximation support of the wrapped 
query, that would be fantastic.

> Make the query -> filter migration less performance trappy
> --
>
> Key: LUCENE-6290
> URL: https://issues.apache.org/jira/browse/LUCENE-6290
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Adrien Grand
>Assignee: Adrien Grand
> Fix For: Trunk, 5.1
>
>
> The filter->query migration might be a bit trappy in terms of performance for 
> our users.
> For instance a FilteredQuery over a TermQuery and a DocValuesRangeFilter 
> should be migrated to a BooleanQuery with a MUST clause for the TermQuery and 
> a FILTER clause for the DocValuesRangeQuery. Performance will be similar 
> since in both case we would use the query to drive the iteration and the 
> filter would only be used to check documents that match the query (we would 
> NOT try to advance the filter iterator).
> However, if you only go half-way through the migration and end up with a 
> FilteredQuery over a TermQuery and a QueryWrapperFilter(DocValuesRangeQuery) 
> then performance will be terrible because this QueryWrapperFilter does not 
> support random-access (which is the way such filters were not too slow 
> before) and hides the approximation support from the DocValuesRangeQuery.



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

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



[jira] [Commented] (LUCENE-6290) Make the query -> filter migration less performance trappy

2015-02-24 Thread Robert Muir (JIRA)

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

Robert Muir commented on LUCENE-6290:
-

+1

> Make the query -> filter migration less performance trappy
> --
>
> Key: LUCENE-6290
> URL: https://issues.apache.org/jira/browse/LUCENE-6290
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Adrien Grand
>Assignee: Adrien Grand
> Fix For: Trunk, 5.1
>
> Attachments: LUCENE-6290.patch
>
>
> The filter->query migration might be a bit trappy in terms of performance for 
> our users.
> For instance a FilteredQuery over a TermQuery and a DocValuesRangeFilter 
> should be migrated to a BooleanQuery with a MUST clause for the TermQuery and 
> a FILTER clause for the DocValuesRangeQuery. Performance will be similar 
> since in both case we would use the query to drive the iteration and the 
> filter would only be used to check documents that match the query (we would 
> NOT try to advance the filter iterator).
> However, if you only go half-way through the migration and end up with a 
> FilteredQuery over a TermQuery and a QueryWrapperFilter(DocValuesRangeQuery) 
> then performance will be terrible because this QueryWrapperFilter does not 
> support random-access (which is the way such filters were not too slow 
> before) and hides the approximation support from the DocValuesRangeQuery.



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

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