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

Yonik Seeley commented on SOLR-8230:
------------------------------------

Is this patch for trunk?  I'm getting failures when I try to apply it.

> Create Facet Telemetry for Nested Facet Query
> ---------------------------------------------
>
>                 Key: SOLR-8230
>                 URL: https://issues.apache.org/jira/browse/SOLR-8230
>             Project: Solr
>          Issue Type: Sub-task
>          Components: Facet Module
>            Reporter: Michael Sun
>             Fix For: Trunk
>
>         Attachments: SOLR-8230.patch, SOLR-8230.patch, SOLR-8230.patch, 
> SOLR-8230.patch
>
>
> This is the first step for SOLR-8228 Facet Telemetry. It's going to implement 
> the telemetry for a nested facet query and put the information obtained in 
> debug field in response.
> Here is an example of telemetry returned from query. 
> Query
> {code}
> curl http://localhost:8228/solr/films/select -d 
> 'q=*:*&wt=json&indent=true&debugQuery=true&json.facet={
> top_genre: {
>   type:terms,
>   field:genre,
>   numBucket:true,
>   limit:2,
>   facet: {
>     top_director: {
>         type:terms,
>         field:directed_by,
>         numBuckets:true,
>         limit:2
>     },
>     first_release: {
>         type:terms,
>         field:initial_release_date,
>         sort:{index:asc},
>         numBuckets:true,
>         limit:2
>     }
>   }
> }
> }'
> {code}
> Telemetry returned (inside debug part)
> {code}
>     "facet-trace":{
>       "processor":"FacetQueryProcessor",
>       "elapse":1,
>       "query":null,
>       "sub-facet":[{
>           "processor":"FacetFieldProcessorUIF",
>           "elapse":1,
>           "field":"genre",
>           "limit":2,
>           "sub-facet":[{
>               "filter":"genre:Drama",
>               "processor":"FacetFieldProcessorUIF",
>               "elapse":0,
>               "field":"directed_by",
>               "limit":2},
>             {
>               "filter":"genre:Drama",
>               "processor":"FacetFieldProcessorNumeric",
>               "elapse":0,
>               "field":"initial_release_date",
>               "limit":2},
>             {
>               "filter":"genre:Comedy",
>               "processor":"FacetFieldProcessorUIF",
>               "elapse":0,
>               "field":"directed_by",
>               "limit":2},
>             {
>               "filter":"genre:Comedy",
>               "processor":"FacetFieldProcessorNumeric",
>               "elapse":0,
>               "field":"initial_release_date",
>               "limit":2}]}]},
> {code}



--
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

Reply via email to