Re: Re[2]: Federated Search

2007-03-05 Thread Venkatesh Seetharam
Hi Jack, Howdy. Comments are inline. is there any reason you don't want to use HTTP? I've seen that Hadoop RPC is faster then HTTP. Also, Since Solr returns XML response, you incur overhead in parsing that and then merging. I havent sone scale testing with HTTP and XML response. Do the searc

Re: Error with bin/optimize and multiple solr webapps

2007-03-05 Thread Jeff Rodenburg
Thanks Hoss. I'll add an issue in JIRA and attach the patch. On 3/5/07, Chris Hostetter <[EMAIL PROTECTED]> wrote: : This line assumes a single solr installation under Tomcat, whereas the : multiple webapp scenario runs from a different location (the "/solr" part). : I'm sure this applies e

Re: Error with bin/optimize and multiple solr webapps

2007-03-05 Thread Chris Hostetter
: This line assumes a single solr installation under Tomcat, whereas the : multiple webapp scenario runs from a different location (the "/solr" part). : I'm sure this applies elsewhere. good catch ... it looks like all of our scripts assume "/solr/update" is the correct path to POST commit/optimi

Re: Federated Search

2007-03-05 Thread Venkatesh Seetharam
Hi Tim, Thanks for your response. Interesting idea. Does the DB scale? Do you have one single index which you plan to use Solr for or you have multiple indexes? But I don't know how big the index will grow and I wanted to be able to add servers at any point. I'm thinking of having N partition

Error with bin/optimize and multiple solr webapps

2007-03-05 Thread Jeff Rodenburg
I noticed an issue with the optimize bash script in /bin. Per the line: rs=`curl http://${solr_hostname}:${solr_port}/solr/update -s -d ""` This line assumes a single solr installation under Tomcat, whereas the multiple webapp scenario runs from a different location (the "/solr" part). I'm sure

Re: Dynamic RequestHandler loading

2007-03-05 Thread Ryan McKinley
> > // get all the registered handlers by class > Collection getRequestHandlers( Class SolrRequestHandler> clazz ); By class? What's that for? It was useful to check what else is configured. The alternative is to have a Collection getRequestHandlers() and have let the client sort out wha

Re: Dynamic RequestHandler loading

2007-03-05 Thread Yonik Seeley
On 3/5/07, Ryan McKinley <[EMAIL PROTECTED]> wrote: I know I'm pushing solr to do things it was never designed to do, so shut me up quick if this is not where you want things to go - I could quietly implement this with quick hacks, but i'd rather not... Currently SolrCore loads all the request h

Re: merely a suggestion: schema.xml validator or better schema validation logging

2007-03-05 Thread Ryan McKinley
: I had silent a error that I can't remember the details of, but it : was something like putting the for boost functions outside : the . It didn't blow up, but it was a nonsense config that : was accepted. again, there's nothing erroneous about having a outside of a when specifing the init par

Re: 'accumulate' copyField for faceting

2007-03-05 Thread Mike Klaas
A patch is up at SOLR-176 On 3/2/07, Mike Klaas <[EMAIL PROTECTED]> wrote: On 3/2/07, Ryan McKinley <[EMAIL PROTECTED]> wrote: > Yes, this would be really helpfull. It would be nice to be able to > put this in in the response output too. Two votes is enough for me. I'll see if I can get to i

Re: merely a suggestion: schema.xml validator or better schema validation logging

2007-03-05 Thread Chris Hostetter
: I had (minimum match) blow up at query time with a number : format exception (this is from memory). That's a RequestHandler specific request param that can also be specified as a default/invarient/appended init param ... i'm not sure that SolrCore could do much to validate that when parsing th

Dynamic RequestHandler loading

2007-03-05 Thread Ryan McKinley
I know I'm pushing solr to do things it was never designed to do, so shut me up quick if this is not where you want things to go - I could quietly implement this with quick hacks, but i'd rather not... Currently SolrCore loads all the request handlers in a final variable as the instance is initia

Re[2]: Federated Search

2007-03-05 Thread Tim Patton
Jack L wrote: This is very interesting discussion. I have a few question while reading Tim and Venkatesh's email: To Tim: 1. is there any reason you don't want to use HTTP? Since solr has an HTTP interface already, I suppose using HTTP is the simplest way to communicate the solr servers

Re: logging off

2007-03-05 Thread Bill Au
FYI, the admin page has a link, [LOGGING], that can be use to change Solr's logging on the fly. Bill On 3/4/07, Chris Hostetter <[EMAIL PROTECTED]> wrote: : Hi Brian, all you have to do is create a logging.properties file and : call this before starting up solr: : : System.setProperty("java.u

Re[2]: Federated Search

2007-03-05 Thread Jack L
This is very interesting discussion. I have a few question while reading Tim and Venkatesh's email: To Tim: 1. is there any reason you don't want to use HTTP? Since solr has an HTTP interface already, I suppose using HTTP is the simplest way to communicate the solr servers from the merger/se

Re[2]: How to stop solr/jetty

2007-03-05 Thread Jack L
Hello Otis, Thanks. The ps command works well. -- Best regards, Jack Monday, March 5, 2007, 2:26:24 AM, you wrote: > Ctrl-c if you still have it on the command line, or kill PID > (which you can see in either top of by doing a ps auxwww| grep java). > Otis > . . . . . . . . . . . . . . . . .

Re: JVM random crashes

2007-03-05 Thread Bill Au
Seems like this maybe a JVM bug: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6500147 http://forum.java.sun.com/thread.jspa?threadID=659990&messageID=3876052 Have you tried using a different garbage collector? Bill On 3/3/07, Jed Reynolds <[EMAIL PROTECTED]> wrote: Yonik Seeley wrote:

Re: Federated Search

2007-03-05 Thread Tim Patton
Venkatesh Seetharam wrote: Hi Tim, Howdy. I saw your post on Solr newsgroup and caught my attention. I'm working on a similar problem for searching a vault of over 100 million XML documents. I already have the encoding part done using Hadoop and Lucene. It works like a charm. I create N in

solr data serialization (python,json,ruby) as a standalone module

2007-03-05 Thread Xiaoming Liu
hi, I am trying to use Solr data serialization module in a separate project, such as serializing my own Java object to xml, python, json, or ruby formats. I have a look at org.apache.solr.request and figure out what I have to do to use Solr's serialization in a standalone way: -- Turn the Java

Re: How to stop solr/jetty

2007-03-05 Thread Otis Gospodnetic
Ctrl-c if you still have it on the command line, or kill PID (which you can see in either top of by doing a ps auxwww| grep java). Otis . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Simpy -- http://www.simpy.com/ - Tag - Search - Share - Original Message From: Jack

How to stop solr/jetty

2007-03-05 Thread Jack L
Hello, I guess this is more of a (naive) jetty question - I'm running a modified instance of the "example" project with jetty on a linux server. How should I stop this jetty instance? Note that I may have multiple jetty instances and other java processes running and I'd like to stop a particular i