Re: apache solr - dovecot - some search fields works some dont

2015-02-25 Thread Alexandre Rafalovitch
This is very serious. You are missing a field called "text". You have
a field _type_ called "text", maybe that's where the confusion came
from. Is that something you configured in dovecote? Was it supposed to
be "body" or a catch-all field with copyFields into it?

I don't know Dovecote, but it is a clear mismatch between expectations
and reality. So, you need to check which one it is. One way would be
to query Solr directly and see if you have anything in your "body"
field. It's not stored, but you can check the indexed tokens in the
Web Admin UI under Schema Definition (or some such) and asking to load
token values for that field. If you have content in "body" field then
your indexing works and either you need to search also against that
field or have copyField instructions (which should have came with
Dovecote install).

Fix this first.

Regards,
   Alex.

On 25 February 2015 at 10:39, Kevin Laurie  wrote:
> Hi Alex,
>
> I get 1 error on start up
> Is the error below serious:-
>
>
> 2/25/2015, 11:32:30 PM ERROR SolrCore
> org.apache.solr.common.SolrException: undefined field text
>
> org.apache.solr.common.SolrException: undefined field text
> at 
> org.apache.solr.schema.IndexSchema.getDynamicFieldType(IndexSchema.java:1269)
> at 
> org.apache.solr.schema.IndexSchema$SolrQueryAnalyzer.getWrappedAnalyzer(IndexSchema.java:434)




Solr Analyzers, Tokenizers, Filters, URPs and even a newsletter:
http://www.solr-start.com/


Re: apache solr - dovecot - some search fields works some dont

2015-02-25 Thread Kevin Laurie
Hi Alex,

Below shows that Solr is not getting anything from the text search.
I will try to search from / to and see hows the performance.





select BAD Error in IMAP command INBOX: Unknown command.
. select inbox
* FLAGS (\Answered \Flagged \Deleted \Seen \Draft $Forwarded)
* OK [PERMANENTFLAGS (\Answered \Flagged \Deleted \Seen \Draft
$Forwarded \*)] Flags permitted.
* 49983 EXISTS
* 0 RECENT
* OK [UNSEEN 46791] First unseen.
* OK [UIDVALIDITY 1414214135] UIDs valid
* OK [UIDNEXT 107218] Predicted next UID
* OK [NOMODSEQ] No permanent modsequences
. OK [READ-WRITE] Select completed (0.002 secs).
search text dave
search BAD Error in IMAP command TEXT: Unknown command.
. search text "dave"
* OK Searched 6% of the mailbox, ETA 2:24
* OK Searched 13% of the mailbox, ETA 2:10
* OK Searched 20% of the mailbox, ETA 1:54
* OK Searched 27% of the mailbox, ETA 1:46
* OK Searched 34% of the mailbox, ETA 1:36
* OK Searched 41% of the mailbox, ETA 1:26
* OK Searched 49% of the mailbox, ETA 1:11
* OK Searched 56% of the mailbox, ETA 1:02
* OK Searched 63% of the mailbox, ETA 0:52
* OK Searched 69% of the mailbox, ETA 0:44
* OK Searched 77% of the mailbox, ETA 0:31
* OK Searched 85% of the mailbox, ETA 0:20
* OK Searched 92% of the mailbox, ETA 0:10
* OK Searched 98% of the mailbox, ETA 0:02

On Wed, Feb 25, 2015 at 11:39 PM, Kevin Laurie
 wrote:
> Hi Alex,
>
> I get 1 error on start up
> Is the error below serious:-
>
>
> 2/25/2015, 11:32:30 PM ERROR SolrCore
> org.apache.solr.common.SolrException: undefined field text
>
> org.apache.solr.common.SolrException: undefined field text
> at 
> org.apache.solr.schema.IndexSchema.getDynamicFieldType(IndexSchema.java:1269)
> at 
> org.apache.solr.schema.IndexSchema$SolrQueryAnalyzer.getWrappedAnalyzer(IndexSchema.java:434)
> at 
> org.apache.lucene.analysis.DelegatingAnalyzerWrapper$DelegatingReuseStrategy.getReusableComponents(DelegatingAnalyzerWrapper.java:74)
> at org.apache.lucene.analysis.Analyzer.tokenStream(Analyzer.java:175)
> at org.apache.lucene.util.QueryBuilder.createFieldQuery(QueryBuilder.java:207)
> at 
> org.apache.solr.parser.SolrQueryParserBase.newFieldQuery(SolrQueryParserBase.java:374)
> at 
> org.apache.solr.parser.SolrQueryParserBase.getFieldQuery(SolrQueryParserBase.java:742)
> at 
> org.apache.solr.parser.SolrQueryParserBase.handleBareTokenQuery(SolrQueryParserBase.java:541)
> at org.apache.solr.parser.QueryParser.Term(QueryParser.java:299)
> at org.apache.solr.parser.QueryParser.Clause(QueryParser.java:185)
> at org.apache.solr.parser.QueryParser.Query(QueryParser.java:107)
> at org.apache.solr.parser.QueryParser.TopLevelQuery(QueryParser.java:96)
> at 
> org.apache.solr.parser.SolrQueryParserBase.parse(SolrQueryParserBase.java:151)
> at org.apache.solr.search.LuceneQParser.parse(LuceneQParser.java:50)
> at org.apache.solr.search.QParser.getQuery(QParser.java:141)
> at 
> org.apache.solr.handler.component.QueryComponent.prepare(QueryComponent.java:148)
> at 
> org.apache.solr.handler.component.SearchHandler.handleRequestBody(SearchHandler.java:197)
> at 
> org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandlerBase.java:135)
> at org.apache.solr.core.SolrCore.execute(SolrCore.java:1967)
> at 
> org.apache.solr.core.QuerySenderListener.newSearcher(QuerySenderListener.java:64)
> at org.apache.solr.core.SolrCore$5.call(SolrCore.java:1739)
> at java.util.concurrent.FutureTask.run(FutureTask.java:262)
> at 
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
> at 
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
> at java.lang.Thread.run(Thread.java:745)
>
>
> On Wed, Feb 25, 2015 at 3:08 AM, Alexandre Rafalovitch
>  wrote:
>> The field definition looks fine. It's not storing any content
>> (stored=false) but is indexing, so you should find the records but not
>> see the body in them.
>>
>> Not seeing a log entry is more of a worry. Are you sure the request
>> even made it to Solr?
>>
>> Can you see anything in Dovecot's logs? Or in Solr's access.logs
>> (Actually Jetty/Tomcat's access logs that may need to be enabled
>> first).
>>
>> At this point, you don't have enough information to fix anything. You
>> need to understand what's different between request against "subject"
>> vs. the request against "body". I would break the communication in
>> three stages:
>> 1) What Dovecote sent
>> 2) What Solr received
>> 3) What Solr sent back
>>
>> I don't know your skill levels or your system setup to advise
>> specifically, but Network tracer (e.g. Wireshark) is good for 1. Logs
>> are good for 2. Using the query from 1) and manually running it
>> against Solr is good for 3).
>>
>> Hope this helps,
>>Alex.
>>
>> On 24 February 2015 at 12:35, Kevin Laurie  
>> wrote:
>>> 
>>
>>
>>
>> 
>> Solr Analyzers, Tokenizers, Filters, URPs and even a newsletter:
>> http://www.solr-start.com/


Re: apache solr - dovecot - some search fields works some dont

2015-02-25 Thread Kevin Laurie
Hi Alex,

I get 1 error on start up
Is the error below serious:-


2/25/2015, 11:32:30 PM ERROR SolrCore
org.apache.solr.common.SolrException: undefined field text

org.apache.solr.common.SolrException: undefined field text
at org.apache.solr.schema.IndexSchema.getDynamicFieldType(IndexSchema.java:1269)
at 
org.apache.solr.schema.IndexSchema$SolrQueryAnalyzer.getWrappedAnalyzer(IndexSchema.java:434)
at 
org.apache.lucene.analysis.DelegatingAnalyzerWrapper$DelegatingReuseStrategy.getReusableComponents(DelegatingAnalyzerWrapper.java:74)
at org.apache.lucene.analysis.Analyzer.tokenStream(Analyzer.java:175)
at org.apache.lucene.util.QueryBuilder.createFieldQuery(QueryBuilder.java:207)
at 
org.apache.solr.parser.SolrQueryParserBase.newFieldQuery(SolrQueryParserBase.java:374)
at 
org.apache.solr.parser.SolrQueryParserBase.getFieldQuery(SolrQueryParserBase.java:742)
at 
org.apache.solr.parser.SolrQueryParserBase.handleBareTokenQuery(SolrQueryParserBase.java:541)
at org.apache.solr.parser.QueryParser.Term(QueryParser.java:299)
at org.apache.solr.parser.QueryParser.Clause(QueryParser.java:185)
at org.apache.solr.parser.QueryParser.Query(QueryParser.java:107)
at org.apache.solr.parser.QueryParser.TopLevelQuery(QueryParser.java:96)
at 
org.apache.solr.parser.SolrQueryParserBase.parse(SolrQueryParserBase.java:151)
at org.apache.solr.search.LuceneQParser.parse(LuceneQParser.java:50)
at org.apache.solr.search.QParser.getQuery(QParser.java:141)
at 
org.apache.solr.handler.component.QueryComponent.prepare(QueryComponent.java:148)
at 
org.apache.solr.handler.component.SearchHandler.handleRequestBody(SearchHandler.java:197)
at 
org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandlerBase.java:135)
at org.apache.solr.core.SolrCore.execute(SolrCore.java:1967)
at 
org.apache.solr.core.QuerySenderListener.newSearcher(QuerySenderListener.java:64)
at org.apache.solr.core.SolrCore$5.call(SolrCore.java:1739)
at java.util.concurrent.FutureTask.run(FutureTask.java:262)
at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
at java.lang.Thread.run(Thread.java:745)


On Wed, Feb 25, 2015 at 3:08 AM, Alexandre Rafalovitch
 wrote:
> The field definition looks fine. It's not storing any content
> (stored=false) but is indexing, so you should find the records but not
> see the body in them.
>
> Not seeing a log entry is more of a worry. Are you sure the request
> even made it to Solr?
>
> Can you see anything in Dovecot's logs? Or in Solr's access.logs
> (Actually Jetty/Tomcat's access logs that may need to be enabled
> first).
>
> At this point, you don't have enough information to fix anything. You
> need to understand what's different between request against "subject"
> vs. the request against "body". I would break the communication in
> three stages:
> 1) What Dovecote sent
> 2) What Solr received
> 3) What Solr sent back
>
> I don't know your skill levels or your system setup to advise
> specifically, but Network tracer (e.g. Wireshark) is good for 1. Logs
> are good for 2. Using the query from 1) and manually running it
> against Solr is good for 3).
>
> Hope this helps,
>Alex.
>
> On 24 February 2015 at 12:35, Kevin Laurie  
> wrote:
>> 
>
>
>
> 
> Solr Analyzers, Tokenizers, Filters, URPs and even a newsletter:
> http://www.solr-start.com/


Re: apache solr - dovecot - some search fields works some dont

2015-02-24 Thread Alexandre Rafalovitch
The field definition looks fine. It's not storing any content
(stored=false) but is indexing, so you should find the records but not
see the body in them.

Not seeing a log entry is more of a worry. Are you sure the request
even made it to Solr?

Can you see anything in Dovecot's logs? Or in Solr's access.logs
(Actually Jetty/Tomcat's access logs that may need to be enabled
first).

At this point, you don't have enough information to fix anything. You
need to understand what's different between request against "subject"
vs. the request against "body". I would break the communication in
three stages:
1) What Dovecote sent
2) What Solr received
3) What Solr sent back

I don't know your skill levels or your system setup to advise
specifically, but Network tracer (e.g. Wireshark) is good for 1. Logs
are good for 2. Using the query from 1) and manually running it
against Solr is good for 3).

Hope this helps,
   Alex.

On 24 February 2015 at 12:35, Kevin Laurie  wrote:
> 




Solr Analyzers, Tokenizers, Filters, URPs and even a newsletter:
http://www.solr-start.com/


Re: apache solr - dovecot - some search fields works some dont

2015-02-24 Thread Kevin Laurie
Hi Alex,

Below is where my schema is stored:-

/opt/solr/solr/collection1/conf#

File name: schema.xml

Below output for body


 
   
   
   
   

   
   

   
   
   
   
   
 

Anything you see that I should be concerned about?




On Wed, Feb 25, 2015 at 1:27 AM, Kevin Laurie 
wrote:

> Hi Alex,
> Sorry for such noobness question.
> But where does the schema file go in Solr? Is the directory below correct?
> /opt/solr/solr/collection1/data
> Correct?
> Thanks
> Kevin
>
> On Wed, Feb 25, 2015 at 1:21 AM, Kevin Laurie
>  wrote:
> > Dear Alex,
> > I checked the log. When searching the fields From , To, Subject. It
> records
> > it
> > When searching Body, there is no log showing. I am assuming it is a
> problem
> > in the schema.
> >
> > Will post schema.xml output in next mail.
> >
> > On Wed, Feb 25, 2015 at 1:09 AM, Alexandre Rafalovitch <
> arafa...@gmail.com>
> > wrote:
> >>
> >> Look for the line like this in your log with the search matching the
> >> body. Maybe put a nonsense string and look for that. This should tell
> >> you what the Solr-side search looks like.
> >>
> >> The thing that worries me here is: rows=107178 - that's most probably
> >> what's blowing up Solr. You should be paging, not getting everything.
> >> And that number being like that, it may mean your client makes two
> >> requests, once to get the result count and once to get the rows
> >> themselves. It's the second request that is most probably blowing up.
> >>
> >> Once you get the request, you should be able to tell what fields are
> >> being searched and check those fields in schema.xml for field type and
> >> then field type's definition. Which is what I asked for in the
> >> previous email.
> >>
> >> Regards,
> >>Alex.
> >>
> >> On 24 February 2015 at 11:55, Kevin Laurie  >
> >> wrote:
> >> > 155092 [qtp433527567-13] INFO  org.apache.solr.core.SolrCore  ?
> >> > [collection1] webapp=/solr path=/select
> >> >
> >> >
> params={sort=uid+asc&fl=uid,score&q=subject:"price"&fq=%2Bbox:ac553604f7314b54e6233555fc1a+%2Buser:"
> u...@domain.net"&rows=107178}
> >> > hits=1237 status=0 QTime=1918
> >>
> >>
> >>
> >> 
> >> Solr Analyzers, Tokenizers, Filters, URPs and even a newsletter:
> >> http://www.solr-start.com/
> >
> >
>


Re: apache solr - dovecot - some search fields works some dont

2015-02-24 Thread Kevin Laurie
Hi Alex,
Sorry for such noobness question.
But where does the schema file go in Solr? Is the directory below correct?
/opt/solr/solr/collection1/data
Correct?
Thanks
Kevin

On Wed, Feb 25, 2015 at 1:21 AM, Kevin Laurie
 wrote:
> Dear Alex,
> I checked the log. When searching the fields From , To, Subject. It records
> it
> When searching Body, there is no log showing. I am assuming it is a problem
> in the schema.
>
> Will post schema.xml output in next mail.
>
> On Wed, Feb 25, 2015 at 1:09 AM, Alexandre Rafalovitch 
> wrote:
>>
>> Look for the line like this in your log with the search matching the
>> body. Maybe put a nonsense string and look for that. This should tell
>> you what the Solr-side search looks like.
>>
>> The thing that worries me here is: rows=107178 - that's most probably
>> what's blowing up Solr. You should be paging, not getting everything.
>> And that number being like that, it may mean your client makes two
>> requests, once to get the result count and once to get the rows
>> themselves. It's the second request that is most probably blowing up.
>>
>> Once you get the request, you should be able to tell what fields are
>> being searched and check those fields in schema.xml for field type and
>> then field type's definition. Which is what I asked for in the
>> previous email.
>>
>> Regards,
>>Alex.
>>
>> On 24 February 2015 at 11:55, Kevin Laurie 
>> wrote:
>> > 155092 [qtp433527567-13] INFO  org.apache.solr.core.SolrCore  ?
>> > [collection1] webapp=/solr path=/select
>> >
>> > params={sort=uid+asc&fl=uid,score&q=subject:"price"&fq=%2Bbox:ac553604f7314b54e6233555fc1a+%2Buser:"u...@domain.net"&rows=107178}
>> > hits=1237 status=0 QTime=1918
>>
>>
>>
>> 
>> Solr Analyzers, Tokenizers, Filters, URPs and even a newsletter:
>> http://www.solr-start.com/
>
>


Re: apache solr - dovecot - some search fields works some dont

2015-02-24 Thread Kevin Laurie
Dear Alex,
I checked the log. When searching the fields From , To, Subject. It records
it
When searching Body, there is no log showing. I am assuming it is a problem
in the schema.

Will post schema.xml output in next mail.

On Wed, Feb 25, 2015 at 1:09 AM, Alexandre Rafalovitch 
wrote:

> Look for the line like this in your log with the search matching the
> body. Maybe put a nonsense string and look for that. This should tell
> you what the Solr-side search looks like.
>
> The thing that worries me here is: rows=107178 - that's most probably
> what's blowing up Solr. You should be paging, not getting everything.
> And that number being like that, it may mean your client makes two
> requests, once to get the result count and once to get the rows
> themselves. It's the second request that is most probably blowing up.
>
> Once you get the request, you should be able to tell what fields are
> being searched and check those fields in schema.xml for field type and
> then field type's definition. Which is what I asked for in the
> previous email.
>
> Regards,
>Alex.
>
> On 24 February 2015 at 11:55, Kevin Laurie 
> wrote:
> > 155092 [qtp433527567-13] INFO  org.apache.solr.core.SolrCore  ?
> > [collection1] webapp=/solr path=/select
> >
> params={sort=uid+asc&fl=uid,score&q=subject:"price"&fq=%2Bbox:ac553604f7314b54e6233555fc1a+%2Buser:"
> u...@domain.net"&rows=107178}
> > hits=1237 status=0 QTime=1918
>
>
>
> 
> Solr Analyzers, Tokenizers, Filters, URPs and even a newsletter:
> http://www.solr-start.com/
>


Re: apache solr - dovecot - some search fields works some dont

2015-02-24 Thread Alexandre Rafalovitch
Look for the line like this in your log with the search matching the
body. Maybe put a nonsense string and look for that. This should tell
you what the Solr-side search looks like.

The thing that worries me here is: rows=107178 - that's most probably
what's blowing up Solr. You should be paging, not getting everything.
And that number being like that, it may mean your client makes two
requests, once to get the result count and once to get the rows
themselves. It's the second request that is most probably blowing up.

Once you get the request, you should be able to tell what fields are
being searched and check those fields in schema.xml for field type and
then field type's definition. Which is what I asked for in the
previous email.

Regards,
   Alex.

On 24 February 2015 at 11:55, Kevin Laurie  wrote:
> 155092 [qtp433527567-13] INFO  org.apache.solr.core.SolrCore  ?
> [collection1] webapp=/solr path=/select
> params={sort=uid+asc&fl=uid,score&q=subject:"price"&fq=%2Bbox:ac553604f7314b54e6233555fc1a+%2Buser:"u...@domain.net"&rows=107178}
> hits=1237 status=0 QTime=1918




Solr Analyzers, Tokenizers, Filters, URPs and even a newsletter:
http://www.solr-start.com/


Re: apache solr - dovecot - some search fields works some dont

2015-02-24 Thread Kevin Laurie
Dear Alex,
Nothing comes back when I do a "body search". It shows a searching
process on the client but then it just stops and no result comes up.
I am wondering if this is schema related problem.

When I search a "subject" on the mail client I get output as below and :-

8025 [main] INFO  org.eclipse.jetty.server.AbstractConnector  ?
Started SocketConnector@0.0.0.0:8983
9001 [searcherExecutor-6-thread-1] INFO  org.apache.solr.core.SolrCore
 ? [collection1] Registered new searcher Searcher@7dfcb28[collection1]
main{StandardDirectoryReader(segments_4g:789:nrt _6z(4.10.2):C16672
_44(4.10.2):C6996 _56(4.10.2):C3672 _64(4.10.2):C4000
_8y(4.10.2):C3143 _7v(4.10.2):C673 _7b(4.10.2):C830 _85(4.10.2):C3754
_7k(4.10.2):C3975 _8f(4.10.2):C1516 _7n(4.10.2):C67 _9a(4.10.2):C677
_8o(4.10.2):C38 _8v(4.10.2):C40 _9l(4.10.2):C2705 _8x(4.10.2):C43
_90(4.10.2):C16 _9b(4.10.2):C22 _9d(4.10.2):C44 _9f(4.10.2):C84
_9h(4.10.2):C83 _9i(4.10.2):C356 _9j(4.10.2):C84 _9k(4.10.2):C296
_9m(4.10.2):C83 _9n(4.10.2):C57)}
155092 [qtp433527567-13] INFO  org.apache.solr.core.SolrCore  ?
[collection1] webapp=/solr path=/select
params={sort=uid+asc&fl=uid,score&q=subject:"price"&fq=%2Bbox:ac553604f7314b54e6233555fc1a+%2Buser:"u...@domain.net"&rows=107178}
hits=1237 status=0 QTime=1918

The content is quite large, 27,000emails .

Could you advise what could this problem be?
How do we correct and fix this problem then?

I might have the wrong schema installed so the body search is not
working. Could this be it?
Might post this on dovecot to see if someone could answer about this.

Kindly advise if you have any idea on this

Ps.How do I check the body definition?
Thanks
Kevin

On Tue, Feb 24, 2015 at 9:36 PM, Alexandre Rafalovitch
 wrote:
> What specifically do you mean by "stall"? Very slow but comes back?
> Never comes back? Throws an error?
>
> What is your field definition for body? How big is the content in it?
> Do you change the fields returned if you search body and if you search
> just headers?
> How many rows do you request back?
>
>
> One hypothesis: You are storing (stored=true) your body, it is very
> large and the stall happens not during search but during reading very
> large amount of text from disk to reconstitute the body to send it
> back.
>
> Regards,
>Alex.
>
> 
> Sign up for my Solr resources newsletter at http://www.solr-start.com/
>
> On 24 February 2015 at 02:06, Kevin Laurie  
> wrote:
>> For example if I were to search To and From apache solr would process it in
>> its log and give me an output, however if I were to search something in the
>> Body it would stall and no output.


Re: apache solr - dovecot - some search fields works some dont

2015-02-24 Thread Alexandre Rafalovitch
What specifically do you mean by "stall"? Very slow but comes back?
Never comes back? Throws an error?

What is your field definition for body? How big is the content in it?
Do you change the fields returned if you search body and if you search
just headers?
How many rows do you request back?


One hypothesis: You are storing (stored=true) your body, it is very
large and the stall happens not during search but during reading very
large amount of text from disk to reconstitute the body to send it
back.

Regards,
   Alex.


Sign up for my Solr resources newsletter at http://www.solr-start.com/

On 24 February 2015 at 02:06, Kevin Laurie  wrote:
> For example if I were to search To and From apache solr would process it in
> its log and give me an output, however if I were to search something in the
> Body it would stall and no output.


apache solr - dovecot - some search fields works some dont

2015-02-23 Thread Kevin Laurie
Hi,
I finally understand how Solr works(somewhat) its a bit complicated as I am
new to the whole concept but I understand it as a search engine. I am using
Solr with dovecot.
and  I found out that some seach fields from the inbox work and other dont.
For example if I were to search To and From apache solr would process it in
its log and give me an output, however if I were to search something in the
Body it would stall and no output.
I am guessing this is some schema.xml problem. Could you advise?
Oh. I already addressed the java heap size problem.
I have underlined the syntax that shows it.
I am guessing its only the body search that fails, and it might be
schema.xml related.



*3374412 [qtp1728413448-16] INFO  org.apache.solr.core.SolrCore  ?
[collection1] webapp=/solr path=/select
params={sort=uid+asc&fl=uid,score&q=subject:"dave"+OR+from:"dave"+OR+to:"dave"&fq=%2Bbox:ac553604f7314b54e6233555fc1a+%2Buser:"b...@email.net
"&rows=107161} hits=571 status=0 QTime=706 *
3379438 [qtp1728413448-18] INFO  org.apache.solr.servlet.
SolrDispatchFilter  ? [admin] webapp=null path=/admin/info/logging
params={_=1424714397078&since=1424711021771&wt=json} status=0 QTime=0
3389791 [qtp1728413448-18] INFO
org.apache.solr.servlet.SolrDispatchFilter  ? [admin] webapp=null
path=/admin/info/logging
params={_=1424714407453&since=1424711021771&wt=json} status=0 QTime=1
3400172 [qtp1728413448-18] INFO
org.apache.solr.servlet.SolrDispatchFilter  ? [admin] webapp=null
path=/admin/info/logging
params={_=1424714417834&since=1424711021771&wt=json} status=0 QTime=1
3410544 [qtp1728413448-18] INFO
org.apache.solr.servlet.SolrDispatchFilter  ? [admin] webapp=null
path=/admin/info/logging
params={_=1424714428205&since=1424711021771&wt=json} status=0 QTime=0
3420895 [qtp1728413448-18] INFO
org.apache.solr.servlet.SolrDispatchFilter  ? [admin] webapp=null
path=/admin/info/logging
params={_=1424714438558&since=1424711021771&wt=json} status=0 QTime=0
3431247 [qtp1728413448-18] INFO
org.apache.solr.servlet.SolrDispatchFilter  ? [admin] webapp=null
path=/admin/info/logging
params={_=1424714448908&since=1424711021771&wt=json} status=0 QTime=1
3441671 [qtp1728413448-18] INFO
org.apache.solr.servlet.SolrDispatchFilter  ? [admin] webapp=null
path=/admin/info/logging
params={_=1424714459334&since=1424711021771&wt=json} status=0 QTime=1
3452017 [qtp1728413448-18] INFO
org.apache.solr.servlet.SolrDispatchFilter  ? [admin] webapp=null
path=/admin/info/logging
params={_=1424714469679&since=1424711021771&wt=json} status=0 QTime=1
3462363 [qtp1728413448-18] INFO
org.apache.solr.servlet.SolrDispatchFilter  ? [admin] webapp=null
path=/admin/info/logging
params={_=1424714480026&since=1424711021771&wt=json} status=0 QTime=0
3472707 [qtp1728413448-18] INFO
org.apache.solr.servlet.SolrDispatchFilter  ? [admin] webapp=null
path=/admin/info/logging
params={_=1424714490369&since=1424711021771&wt=json} status=0 QTime=0
3483139 [qtp1728413448-18] INFO
org.apache.solr.servlet.SolrDispatchFilter  ? [admin] webapp=null
path=/admin/info/logging
params={_=1424714500802&since=1424711021771&wt=json} status=0 QTime=1
3493590 [qtp1728413448-18] INFO
org.apache.solr.servlet.SolrDispatchFilter  ? [admin] webapp=null
path=/admin/info/logging
params={_=1424714511246&since=1424711021771&wt=json} status=0 QTime=0
3504027 [qtp1728413448-18] INFO
org.apache.solr.servlet.SolrDispatchFilter  ? [admin] webapp=null
path=/admin/info/logging
params={_=1424714521691&since=1424711021771&wt=json} status=0 QTime=0
3514477 [qtp1728413448-18] INFO
org.apache.solr.servlet.SolrDispatchFilter  ? [admin] webapp=null
path=/admin/info/logging
params={_=1424714532137&since=1424711021771&wt=json} status=0 QTime=1
3524933 [qtp1728413448-18] INFO
org.apache.solr.servlet.SolrDispatchFilter  ? [admin] webapp=null
path=/admin/info/logging
params={_=1424714542598&since=1424711021771&wt=json} status=0 QTime=0
3535288 [qtp1728413448-18] INFO
org.apache.solr.servlet.SolrDispatchFilter  ? [admin] webapp=null
path=/admin/info/logging
params={_=1424714552951&since=1424711021771&wt=json} status=0 QTime=0
3545634 [qtp1728413448-18] INFO
org.apache.solr.servlet.SolrDispatchFilter  ? [admin] webapp=null
path=/admin/info/logging
params={_=1424714563290&since=1424711021771&wt=json} status=0 QTime=0
3556077 [qtp1728413448-18] INFO
org.apache.solr.servlet.SolrDispatchFilter  ? [admin] webapp=null
path=/admin/info/logging
params={_=1424714573714&since=1424711021771&wt=json} status=0 QTime=0
3566496 [qtp1728413448-18] INFO
org.apache.solr.servlet.SolrDispatchFilter  ? [admin] webapp=null
path=/admin/info/logging
params={_=1424714584157&since=1424711021771&wt=json} status=0 QTime=1
3576937 [qtp1728413448-18] INFO
org.apache.solr.servlet.SolrDispatchFilter  ? [admin] webapp=null
path=/admin/info/logging
params={_=1424714594601&since=1424711021771&wt=json} status=0 QTime=0
3587273 [qtp1728413448-18] INFO
org.apache.solr.servlet.SolrDispatchFilter  ? [admin] webapp=null
path=/admin/info/logging
params={_=1424714604939&sin