Re: Slight issue with classloading and DataImportHandler

2008-06-19 Thread Noble Paul നോബിള്‍ नोब्ळ्
We plan to use SolrResourceLoader (in the next patch) . That is the best way to go. But we still prefer the usage of DIH package classes without any prefix. type=HttpDataSource instead of type=solr.HttpDataSource But users must be able to load their classes using the solr.classname format

Problem with searching using the DisMaxHandler

2008-06-19 Thread Brian Carmalt
Hello all, I have defined a DisMax handler. It should search in the following fields: content1, content2 and id(doc uid). I would like to beable to specify a query like the following: (search terms) AND ( id1 OR id2 .. idn) My intent is to retrieve only the docs in which hits for the

Re[2]: Seeking suggestions - keyword related site promotion

2008-06-19 Thread JLIST
Hello Stephen, I'm trying to understand what you are suggesting. Yes, I have a fixed set of keywords for each good site, although they occasionally get edited. Not sure what you mean by index these keywords into a field for each site. Did you mean index these keywords for all pages (that contain

Re: Problem with searching using the DisMaxHandler

2008-06-19 Thread Erik Hatcher
The dismax query parser only accepts limited special syntax. From the wiki: http://wiki.apache.org/solr/DisMaxRequestHandler?highlight=%28CategorySolrRequestHandler%29%7C%28%28CategorySolrRequestHandler%29%29 ...is designed to process simple user entered phrases (without heavy syntax)

http://localhost:8983/solr/core0/update

2008-06-19 Thread rohit arora
Hi, I have created 2 cores ( core0 and core1 ) now I want to update post.sh to update data for core0 . I changed URL=http://localhost:8983/solr/update to URL=http://localhost:8983/solr/core0/update in post.sh but while posting it gives error curl: (7) couldn't connect Any help would be

Re: http://localhost:8983/solr/core0/update

2008-06-19 Thread Otis Gospodnetic
Hi, Sounds like nothing is running on port 8983. Maybe check port 8080? The port being used by the container probably gets printed on startup (at least Jetty does that). Otis -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch - Original Message From: rohit arora [EMAIL

snapshooter configuration

2008-06-19 Thread McBride, John
Hello, In my solrconfig I have the entry: !-- A postCommit event is fired after every commit or optimize command listener event=postCommit class=solr.RunExecutableListener str name=exesolr/bin/snapshooter/str str name=dir./str bool name=waittrue/bool arr name=args strarg1/str

Re: Slight issue with classloading and DataImportHandler

2008-06-19 Thread William Silva
Hi, Are you using DataImportHandler in a production environment ? When it will be available in the nightly builds ? Thanks, William. On Thu, Jun 19, 2008 at 3:12 AM, Noble Paul നോബിള്‍ नोब्ळ् [EMAIL PROTECTED] wrote: We plan to use SolrResourceLoader (in the next patch) . That is the best

solrj.embedded.JettySolrRunner and logging to file instead of STDERR

2008-06-19 Thread Daniel Rosher
Hi, I've modified a copy of ./src/test/org/apache/solr/TestDistributedSearch.java for my own build process. I can compile fine but running the test always logs to STDERR INFO: Logging to STDERR via org.mortbay.log.StdErrLog This method appears deprecated? //public JettySolrRunner( String

Re: solrj.embedded.JettySolrRunner and logging to file instead of STDERR

2008-06-19 Thread Lucas F. A. Teixeira
Solr uses JDK logging system, Configuring this will make you happy. []s, LUcas Lucas Frare A. Teixeira [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] Tel: +55 11 3660.1622 - R3018 Daniel Rosher escreveu: Hi, I've modified a copy of ./src/test/org/apache/solr/TestDistributedSearch.java for my

xpath over update xml

2008-06-19 Thread segv
I’m new to solr (using the 1.3 nightly at the moment) and trying to configure it to accept a third-party xml schema at the /update interface. I would like to define transformations like those of the DataImportHandler which use xpath syntax. The DataImportHandler ‘pulls’ data from a url. I

Re: [Update] Solr can be started from jetty but not tomcat

2008-06-19 Thread mike segv
The error messages due to this problem are very misleading. After a lot of trial and error I got solr to work with tomcat by adding the xalan.jar to the libs directory and rebuilding the war file. Vinci wrote: Hi all, after several hour I make the solr works a little bit: the jetty

Re: Did you mean functionality

2008-06-19 Thread Matthew Runo
Is there any work being done on getting this into SolrJ at the moment? Thanks! Matthew Runo Software Developer Zappos.com 702.943.7833 On Jun 18, 2008, at 3:09 AM, Lucas F. A. Teixeira wrote: Yeah, i read it. Thanks a lot, I`m waiting for it! []s, Lucas Lucas Frare A. Teixeira [EMAIL

Re: Did you mean functionality

2008-06-19 Thread Grant Ingersoll
FYI, it's now committed. Umm, SolrJ, not yet, but that sounds like a logical next step. Patches welcome! I don't have time for it at this particular moment, but I would be more than happy to commit one if someone else writes it up. -Grant On Jun 19, 2008, at 2:07 PM, Matthew Runo

Re: Did you mean functionality

2008-06-19 Thread Yonik Seeley
On Thu, Jun 19, 2008 at 2:07 PM, Matthew Runo [EMAIL PROTECTED] wrote: Is there any work being done on getting this into SolrJ at the moment? Just a note to those who may be new to SolrJ: you can still access new or custom functionality in a generic way via getResponse() w/o explicit SolrJ

Re: Did you mean functionality

2008-06-19 Thread Matthew Runo
Hmmm, good point. I had completely forgotten about that route. Thanks! Matthew Runo Software Developer Zappos.com 702.943.7833 On Jun 19, 2008, at 1:31 PM, Yonik Seeley wrote: On Thu, Jun 19, 2008 at 2:07 PM, Matthew Runo [EMAIL PROTECTED] wrote: Is there any work being done on getting this

Solr performance issues

2008-06-19 Thread Sébastien Rainville
Hi, I've been using solr for a little without worrying too much about how it works but now it's becoming a bottleneck in my application. I have a couple issues with it: 1. My index always gets slower and slower when commiting/optimizing for some obscure reason. It goes from 1 second with a new

Re: Slight issue with classloading and DataImportHandler

2008-06-19 Thread Noble Paul നോബിള്‍ नोब्ळ्
We are using DIH in production . It is a planned feature for 1.3 realease. Let us see when it happens --Noble On Thu, Jun 19, 2008 at 7:35 PM, William Silva [EMAIL PROTECTED] wrote: Hi, Are you using DataImportHandler in a production environment ? When it will be available in the nightly

Re: xpath over update xml

2008-06-19 Thread Noble Paul നോബിള്‍ नोब्ळ्
This means you may need to write your own RequestHandler. If you wish to push data, write it to a directory and use DIH with FileDataSource --Noble On Thu, Jun 19, 2008 at 9:58 PM, segv [EMAIL PROTECTED] wrote: I'm new to solr (using the 1.3 nightly at the moment) and trying to configure it

Re: Did you mean functionality

2008-06-19 Thread Noble Paul നോബിള്‍ नोब्ळ्
I can take it up. But should we wait for the feature to 'stabilize' before adding it to SolrJ? Till then the approach suggested by Yonik (getResponse()) should be fine --Noble On Fri, Jun 20, 2008 at 2:06 AM, Matthew Runo [EMAIL PROTECTED] wrote: Hmmm, good point. I had completely forgotten

How to use SOLR1.2

2008-06-19 Thread Ranjeet
Hi, I am new in SOLR 1.2, configured Admin GUI. Facing problem in using this. could you pls help me out to configure the nex. Regards, Ranjeet