Return-Path: X-Original-To: apmail-lucene-dev-archive@www.apache.org Delivered-To: apmail-lucene-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 11401C31A for ; Thu, 21 Jun 2012 22:16:44 +0000 (UTC) Received: (qmail 62297 invoked by uid 500); 21 Jun 2012 22:16:43 -0000 Delivered-To: apmail-lucene-dev-archive@lucene.apache.org Received: (qmail 62144 invoked by uid 500); 21 Jun 2012 22:16:42 -0000 Mailing-List: contact dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list dev@lucene.apache.org Received: (qmail 62094 invoked by uid 99); 21 Jun 2012 22:16:42 -0000 Received: from issues-vm.apache.org (HELO issues-vm) (140.211.11.160) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Jun 2012 22:16:42 +0000 Received: from isssues-vm.apache.org (localhost [127.0.0.1]) by issues-vm (Postfix) with ESMTP id A55BC1427F2 for ; Thu, 21 Jun 2012 22:16:42 +0000 (UTC) Date: Thu, 21 Jun 2012 22:16:42 +0000 (UTC) From: "Hoss Man (JIRA)" To: dev@lucene.apache.org Message-ID: <1033787220.41581.1340317002679.JavaMail.jiratomcat@issues-vm> In-Reply-To: <121081353.41578.1340316882653.JavaMail.jiratomcat@issues-vm> Subject: [jira] [Commented] (SOLR-3569) distributed debug is empty when no match to query MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/SOLR-3569?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13398926#comment-13398926 ] Hoss Man commented on SOLR-3569: -------------------------------- discovered this while helping someone on IRC. trivial to reproduce using the example, compare... http://localhost:8983/solr/select?q=foo_s:basdfasd&debugQuery=true&wt=json&indent=true&shards=localhost:8983/solr {noformat} { "responseHeader":{ "status":0, "QTime":11, "params":{ "debugQuery":"true", "shards":"localhost:8983/solr", "indent":"true", "wt":"json", "q":"foo_s:basdfasd"}}, "response":{"numFound":0,"start":0,"docs":[] }, "debug":{ "explain":{}}} {noformat} ...with the non-distrib version... http://localhost:8983/solr/select?q=foo_s:basdfasd&debugQuery=true&wt=json&indent=true {noformat} { "responseHeader":{ "status":0, "QTime":0, "params":{ "debugQuery":"true", "indent":"true", "wt":"json", "q":"foo_s:basdfasd"}}, "response":{"numFound":0,"start":0,"docs":[] }, "debug":{ "rawquerystring":"foo_s:basdfasd", "querystring":"foo_s:basdfasd", "parsedquery":"foo_s:basdfasd", "parsedquery_toString":"foo_s:basdfasd", "explain":{}, "QParser":"LuceneQParser", "timing":{ "time":0.0, "prepare":{ "time":0.0, "org.apache.solr.handler.component.QueryComponent":{ "time":0.0}, "org.apache.solr.handler.component.FacetComponent":{ "time":0.0}, "org.apache.solr.handler.component.MoreLikeThisComponent":{ "time":0.0}, "org.apache.solr.handler.component.HighlightComponent":{ "time":0.0}, "org.apache.solr.handler.component.StatsComponent":{ "time":0.0}, "org.apache.solr.handler.component.DebugComponent":{ "time":0.0}}, "process":{ "time":0.0, "org.apache.solr.handler.component.QueryComponent":{ "time":0.0}, "org.apache.solr.handler.component.FacetComponent":{ "time":0.0}, "org.apache.solr.handler.component.MoreLikeThisComponent":{ "time":0.0}, "org.apache.solr.handler.component.HighlightComponent":{ "time":0.0}, "org.apache.solr.handler.component.StatsComponent":{ "time":0.0}, "org.apache.solr.handler.component.DebugComponent":{ "time":0.0}}}}} {noformat} > distributed debug is empty when no match to query > ------------------------------------------------- > > Key: SOLR-3569 > URL: https://issues.apache.org/jira/browse/SOLR-3569 > Project: Solr > Issue Type: Bug > Reporter: Hoss Man > Priority: Minor > > If a query matches 0 documents, the "debug" information for a distributed query will be empty - ie: no information on timing, or (most importantly for many people) query parsing. -- 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