Re: Problem after update to solr 1.2

2007-06-29 Thread Yonik Seeley
On 6/29/07, Karen Torres <[EMAIL PROTECTED]> wrote: I found the solution, I need to configure the url connection request like this: "Content-Type", "text/xml; charset=ISO-8859-1" due to character encoding of the filter "ISOLatin1AccentFilterFactory". It should have nothing to do with ISOLatin1A

Re: MultifieldSolrQueryParser ?

2007-06-29 Thread Chris Hostetter
: Solr uses a default query parser which is a SolrQueryParser based on : a org.apache.lucene.queryParser.QueryParser; : : I wonder which is the best way to make the IndexSchema use some kind : of MultifieldSolrQueryParser which could be based on a : org.apache.lucene.queryParser.MultiFieldQueryPa

Re: Log levels setting

2007-06-29 Thread Chris Hostetter
: I'm using tomcat 6, does somebody has a snippet of conf file : to set up the log level for all org.apache.solr.* classes ? take a look at the "java.util.logging" section of this tomcat doc... http://tomcat.apache.org/tomcat-6.0-doc/logging.html -Hoss

MultifieldSolrQueryParser ?

2007-06-29 Thread Jérôme Etévé
Hi, Solr uses a default query parser which is a SolrQueryParser based on a org.apache.lucene.queryParser.QueryParser; I wonder which is the best way to make the IndexSchema use some kind of MultifieldSolrQueryParser which could be based on a org.apache.lucene.queryParser.MultiFieldQueryParser for

RE: Log levels setting

2007-06-29 Thread Will Johnson
There are may ways to do this but I drop the following into the solr.war/web-inf/classes/logging.properties files: handlers = org.apache.juli.FileHandler, java.util.logging.ConsoleHandler # Handler specific properties. # Describes spec

Re: Problem after update to solr 1.2

2007-06-29 Thread Karen Torres
Karen Torres escribió: Hello solr users, I have a problem with solr 1.2, I'm using the filter "ISOLatin1AccentFilterFactory" to replaces accented characters by their unaccented equivalent, because I need to index documents in Spanish, so the documents aren't being indexed correctly, when I was

Re: Log levels setting

2007-06-29 Thread Jérôme Etévé
On 6/29/07, Chris Hostetter <[EMAIL PROTECTED]> wrote: : Hi, : is there a way to avoid going to the web interface to set up the solr : log level ? he web intrface for tweaking the log level is actually a miss-feature in my opinion ... it's a handy way to quickly crank the logging level up if so

Re: snapshooter no go

2007-06-29 Thread Chris Hostetter
: Hoss, I think the example solrconfig.xml does document a default "dir" value: : : dir - dir to use as the current working directory. default="." exactly ... the message i was replying to suggested that the default value was "solr/bin" ... i just wanted to clarify that is not the default, that's

Re: Problem after update to solr 1.2

2007-06-29 Thread Chris Hostetter
: I have a problem with solr 1.2, I'm using the filter : "ISOLatin1AccentFilterFactory" to replaces accented characters by their : unaccented equivalent, because I need to index documents in Spanish, so : the documents aren't being indexed correctly, when I was using with solr can you provide som

Re: Log levels setting

2007-06-29 Thread Chris Hostetter
: Hi, : is there a way to avoid going to the web interface to set up the solr : log level ? he web intrface for tweaking the log level is actually a miss-feature in my opinion ... it's a handy way to quickly crank the logging level up if something weird is happening nad you want to see why, but t

Re: Log levels setting

2007-06-29 Thread gerard sychay
You can use CURL (or whatever you use for HTTP requests) to hit the URL's that you click on in the Solr Admin. So, for example, to turn logging off, you can hit the following URL using CURL. http://www.example.com:8983/solr/admin/action.jsp?log=OFF As for your second question, I actually have

Log levels setting

2007-06-29 Thread Jérôme Etévé
Hi, is there a way to avoid going to the web interface to set up the solr log level ? I'm also a bit confused about the INFO log level. Actually it's very nice to see some startup info about the schema , solr home setting, customize modules loaded .. But also this INFO log levels gives two lines

Re: solr-1.2.0 java.util.concurrent.RejectedExecutionException

2007-06-29 Thread Yonik Seeley
On 6/29/07, Karen Loughran <[EMAIL PROTECTED]> wrote: Yonik, Thanks for your reply, I originally had implemented it as you suggest, ie, opened the core in a static initialiser and never closed it, but my client hangs - AFTER receiving the response back from solr (and after response from my utili

Re: solr-1.2.0 java.util.concurrent.RejectedExecutionException

2007-06-29 Thread Karen Loughran
Yonik, Thanks for your reply, I originally had implemented it as you suggest, ie, opened the core in a static initialiser and never closed it, but my client hangs - AFTER receiving the response back from solr (and after response from my utility jar). I have now changed back to this approach,

Re: solr-1.2.0 java.util.concurrent.RejectedExecutionException

2007-06-29 Thread Yonik Seeley
On 6/29/07, Karen Loughran <[EMAIL PROTECTED]> wrote: Hi all, I have downloaded the latest Solr and have created a solr utility jar based on EmbeddedSolr from the wiki, (http://wiki.apache.org/solr/SolJava). My jar has a search method which basically gets the solr core and calls "searchSolr" (

solr-1.2.0 java.util.concurrent.RejectedExecutionException

2007-06-29 Thread Karen Loughran
Hi all, I have downloaded the latest Solr and have created a solr utility jar based on EmbeddedSolr from the wiki, (http://wiki.apache.org/solr/SolJava). My jar has a search method which basically gets the solr core and calls "searchSolr" (identical to that in EmbeddedSolr) with the passed in