RE: snapshooter no go

2007-06-28 Thread Xuesong Luo
Indeed there is one more step: mkdir dir2. ln reports error if the destination dir doesn't not exist. I'll create an JIRA later. Thanks Xuesong -Original Message- From: Otis Gospodnetic [mailto:[EMAIL PROTECTED] Sent: Thursday, June 28, 2007 4:52 PM To: solr-user@lucene.apache.org Subjec

RE: snapshooter no go

2007-06-28 Thread Xuesong Luo
The log didn't have any error message and there is no snapshot.20070628204821 directory generated. 2007/06/28 20:48:21 started by 2007/06/28 20:48:21 command: /export/home/jboss/jboss-3.2.7/bin/solr/bin/snapshooter arg1 arg2 2007/06/28 20:48:21 taking snapshot /export/home/jboss/jboss-3.2.7/bin/s

Re: Dynamically calculated range facet

2007-06-28 Thread John Wang
Hi Martin: I just started a wiki on this: http://browseengine.pbwiki.com/ Has references to the source code. I have written a solr plugin, but it depends on SOLR-243. The implmentation is different from the solr facetted search implementation. Look at the demo: http://www.browseengine.com/demo

Problem after update to solr 1.2

2007-06-28 Thread Karen Torres
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 using with solr 1.1 th

Re: snapshooter no go

2007-06-28 Thread Otis Gospodnetic
I'll read your email more carefully next time. Yes, solr/bin part is commented out in the example solrconfig.xml. Otis . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Simpy -- http://www.simpy.com/ - Tag - Search - Share - Original Message From: Otis Gospodnetic <[EM

Re: snapshooter no go

2007-06-28 Thread Otis Gospodnetic
Look at /logs directory - you should see snapshooter.log there. Otis . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Simpy -- http://www.simpy.com/ - Tag - Search - Share - Original Message From: Xuesong Luo <[EMAIL PROTECTED]> To: solr-user@lucene.apache.org Sent: Thu

Re: snapshooter no go

2007-06-28 Thread Otis Gospodnetic
Maybe you can open an issue in JIRA with your solution, so Bill Au & Co. can fix snappuller. Otis . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Simpy -- http://www.simpy.com/ - Tag - Search - Share - Original Message From: Xuesong Luo <[EMAIL PROTECTED]> To: solr-us

Re: snapshooter no go

2007-06-28 Thread Otis Gospodnetic
Hoss, I think the example solrconfig.xml does document a default "dir" value: dir - dir to use as the current working directory. default="." Otis . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Simpy -- http://www.simpy.com/ - Tag - Search - Share - Original Message F

Re: SolrRequestHandler question

2007-06-28 Thread Chris Hostetter
: I can't change the two-query fundamentals, but I'd like to hide the : implementation from the client. If I wanted to concentrate this logic at : the server, should I be considering a custom request handler? i do this, there's nthing wrong with teh appraoch ... but in my case i'm wuerying the s

Re: Processor load

2007-06-28 Thread Otis Gospodnetic
I think you'll need to add this to your Java command line (but you'll need to kill your JVM first): -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=9889 Otis . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Simpy -- http://www.simpy.com/ - Tag - Search

Re: Processor load

2007-06-28 Thread Mike Klaas
On 28-Jun-07, at 10:52 AM, Michael Thessel wrote: Hi Mike Thanks for your quick response. The restarting the server hasn't any effect. Im not a Java expert and not really familiar with the java tools. I'm no expert in this matter either. Have you tried kill -QUIT? (it prints a thread dump

SolrRequestHandler question

2007-06-28 Thread Jeff Rodenburg
I have a search use case that requires that I use the results of search from IndexA and apply them as a query component of a second search to IndexB. (The nature of the data doesn't allow me to combine these indexes). At present, this is handled at the client level: search one index, get the resul

RE: snapshooter no go

2007-06-28 Thread Xuesong Luo
Just found I can use "ln dir1/* dir2" to make hard link for all files in dir1 to dir2. -Original Message- From: Xuesong Luo Sent: Thursday, June 28, 2007 11:17 AM To: solr-user@lucene.apache.org Subject: RE: snapshooter no go I got another problem: solr is able to find snapshooter but di

RE: snapshooter no go

2007-06-28 Thread Xuesong Luo
I got another problem: solr is able to find snapshooter but didn't generate any snapshot files after I updated the index. I checked the log, everything looks fine, then I run snapshooter from command line. It failed because solaris doesn't support -l option when using cp command. I'm trying to find

Re: Processor load

2007-06-28 Thread Michael Thessel
On Thu, 2007-28-06 at 11:05 -0700, Mike Klaas wrote: > On 28-Jun-07, at 11:02 AM, Yonik Seeley wrote: > > > On 6/28/07, Michael Thessel <[EMAIL PROTECTED]> wrote: > >> I got a solr server running to index the posts of a forum. The > >> server is > >> running in a tomcat installation on a 4-proce

Re: float field indexed with clucene, access with solr

2007-06-28 Thread Yonik Seeley
On 6/28/07, Jérôme Etévé <[EMAIL PROTECTED]> wrote: Hi, I have an index which I generated with clucene where there is a float field. This float field is stored as a simple verbatim character string. Then you should be able to use FloatField (normally of type "float" in the schema). The solr

Re: Processor load

2007-06-28 Thread Mike Klaas
On 28-Jun-07, at 11:02 AM, Yonik Seeley wrote: On 6/28/07, Michael Thessel <[EMAIL PROTECTED]> wrote: I got a solr server running to index the posts of a forum. The server is running in a tomcat installation on a 4-processor Opteron server. One of the threads is eating up 100% of one proces

Re: Processor load

2007-06-28 Thread Yonik Seeley
On 6/28/07, Michael Thessel <[EMAIL PROTECTED]> wrote: I got a solr server running to index the posts of a forum. The server is running in a tomcat installation on a 4-processor Opteron server. One of the threads is eating up 100% of one processor all the time. I do auto-commits every 10s It

float field indexed with clucene, access with solr

2007-06-28 Thread Jérôme Etévé
Hi, I have an index which I generated with clucene where there is a float field. This float field is stored as a simple verbatim character string. The solr schema doc states that for such float fields: And for sortable float fields: What does exactly means 'a string value that isn't human-rea

Re: Processor load

2007-06-28 Thread Michael Thessel
Hi Mike Thanks for your quick response. The restarting the server hasn't any effect. Im not a Java expert and not really familiar with the java tools. Running jconsole on the 100% process (as the same user as the server is running): # jconsole 23248 Unable to attach to 23248: Could not map vmid t

Re: Problems querying Russian content

2007-06-28 Thread funtick
I know Russian better than Russians ;) I currently use default configuration for "dismax" provided by SOLR 1.1; I can add few URLs tonight to the crawler to see what happens. As I know, Lucene/Nutch can even define web page (pdf, txt, html) language by checking raw bytearray (raw HTTP Respon

Re: Processor load

2007-06-28 Thread Mike Klaas
On 28-Jun-07, at 9:36 AM, Michael Thessel wrote: Hello UG I got a solr server running to index the posts of a forum. The server is running in a tomcat installation on a 4-processor Opteron server. One of the threads is eating up 100% of one processor all the time. As you can see in the p

Re: Problems querying Russian content

2007-06-28 Thread Daniel Alheiros
Thanks. Yes I will do it. So you may be the best person to talk about the Russian content indexing. :) My indexing process follows: 1. RussianTokenizer 2. RussianLowerCaseFilter 3. RussianStopFilter 4. RussianStemFilter Seems OK to me as I'm using the same structure used by the

Re: Problems querying Russian content

2007-06-28 Thread Daniel Alheiros
Thanks a lot! Now it is working. It was the Tomcat connector setup Regards, Daniel On 28.06.2007 17:19, "Chris Hostetter" <[EMAIL PROTECTED]> wrote: > > : You can also ensure the browser sends an utf8 encoded post by > : : It works even if the page the form is in is not an UTF-8 page. >

Re: Problems querying Russian content

2007-06-28 Thread funtick
Hi Danier, Ensure that UTF-8 is everywhere... SOLR, WebServer, AppServer, HTTP Headers, etc. And do not use q=Бамбарбиа Киркуду use this instead (encoded URL): q=%D0%91%D0%B0%D0%BC%D0%B1%D0%B0%D1%80%D0%B1%D0%B8%D0%B0+%D0%9A%D0%B8%D1%80%D0%BA%D1%83%D0%B4%D1%83 http://www.tokenizer.org is

Processor load

2007-06-28 Thread Michael Thessel
Hello UG I got a solr server running to index the posts of a forum. The server is running in a tomcat installation on a 4-processor Opteron server. One of the threads is eating up 100% of one processor all the time. As you can see in the ps output it is a fork of one of the childs: 232280:0

Re: Problems querying Russian content

2007-06-28 Thread Chris Hostetter
: You can also ensure the browser sends an utf8 encoded post by : http://www.nabble.com/Cyrillic-characters-t1963293.html#a5402562 http://wiki.apache.org/solr/SolrTomcat (see URI charset section) -Hoss

Re: Problems querying Russian content

2007-06-28 Thread Jérôme Etévé
On 6/28/07, Yonik Seeley <[EMAIL PROTECTED]> wrote: On 6/28/07, Daniel Alheiros <[EMAIL PROTECTED]> wrote: > I'm in trouble now about how to issue queries against Solr using in my "q" > parameter content in Russian (it applies to Chinese and Arabic as well). > > The problem is I can't send any Ru

Re: Problems querying Russian content

2007-06-28 Thread Yonik Seeley
On 6/28/07, Daniel Alheiros <[EMAIL PROTECTED]> wrote: I'm in trouble now about how to issue queries against Solr using in my "q" parameter content in Russian (it applies to Chinese and Arabic as well). The problem is I can't send any Russian special character in URL's because they don't fit in

Problems querying Russian content

2007-06-28 Thread Daniel Alheiros
Hi I'm in trouble now about how to issue queries against Solr using in my "q" parameter content in Russian (it applies to Chinese and Arabic as well). The problem is I can't send any Russian special character in URL's because they don't fit in ASCII domain, so I'm doing a POST to accomplish that.

Re: i wanna change response type to PHP serialize

2007-06-28 Thread James liu
Can u write a test and i give u chinese word. u can try it.. or u get chinese word from china web site..http://www.sina.com.cn,,, i don't know to send sample result to u. 2007/6/28, Nick Jenkin <[EMAIL PROTECTED]>: Are you able to attach a file of serialized (direct php serialized output from