Hierarchical xml

2009-12-01 Thread Pooja Verlani
Hi, I want to index an xml like following: John 1979-29-17T28:14:48Z ABC College 1998 PQRS College 2001 XYZ College 2003 I am not able to judge

Re: Response writer configs

2009-12-01 Thread Noble Paul നോബിള്‍ नोब्ळ्
I guess we should remove this commented response writers from the example solrconfig. It adds no value. On Wed, Dec 2, 2009 at 9:38 AM, Erik Hatcher wrote: > > On Dec 1, 2009, at 9:04 PM, Ross wrote: >> >> I'm starting to play with Solr. This might be a silly question and not >> particularly impo

Re: Response writer configs

2009-12-01 Thread Erik Hatcher
On Dec 1, 2009, at 9:04 PM, Ross wrote: I'm starting to play with Solr. This might be a silly question and not particularly important but I'm curious. I setup the example site using the tutorial. It works very well. I was looking around the config files and notice that in my solrconfig.xml that

Response writer configs

2009-12-01 Thread Ross
Hi all I'm starting to play with Solr. This might be a silly question and not particularly important but I'm curious. I setup the example site using the tutorial. It works very well. I was looking around the config files and notice that in my solrconfig.xml that the queryResponseWriter area is co

question about schemas

2009-12-01 Thread solr-user
I just started using Solr, and I am trying to figure out how to setup my schema. I know that Solr doesn’t have JOINs, and so I am having some difficulty figuring out how would I setup a schema for the following fictional situation. For example, let us say that : - I have a 1+ customers

Re: Maximum number of fields allowed in a Solr document

2009-12-01 Thread Lance Norskog
Lucene creates an array of one item per document for every field you sort on. If you sort on a thousand fields, Lucene will create 1000 different arrays of 500K ints. I assume there is some sort of cache of these arrays. In Solr, it is also possible to sort using a function as the relevance value.

Re: Creating Facets

2009-12-01 Thread Lance Norskog
Also, facet values are pulled from the indexed terms rather than the stored source fields. This means that if you want to facet on a field, that field has to be declared 'indexed="true"' in schema.xml. On Thu, Nov 26, 2009 at 8:40 AM, dipti khullar wrote: > Examples can be found out at: > http://

NYC Search & Discovery Meetup

2009-12-01 Thread Otis Gospodnetic
Hello, For those living in or near NYC, you may be interested in joining (and/or presenting?) at the NYC Search & Discovery Meetup. Topics are: search, machine learning, data mining, NLP, information gathering, information extraction, etc. http://www.meetup.com/NYC-Search-and-Discovery/ Our

Re: Where to put ExternalRequestHandler and Tika jars

2009-12-01 Thread Juan Pedro Danculovic
Now it is working.. It was a libraries problem as you said... thanks! On Mon, Nov 30, 2009 at 12:25 PM, javaxmlsoapdev wrote: > > Yes. code I posted in first thread does work. And I am able to retrieve > data > from the document index. did you include all required jars in deployed solr > appli

Re: latency in solr response is observed after index is updated

2009-12-01 Thread Kay Kay
What would be the average doc size. What is the autoCommit frequency set in solrconfig.xml . Another place to look at is the field cache size and the nature of warmup queries run after a new searcher is created ( happens due to a commit ). Bharath Venkatesh wrote: Hi Kalidoss, I am

Re: getting total index size & last update date/time from query

2009-12-01 Thread Erik Hatcher
The drawback to stats.jsp is that the XML it just that. It isn't in standard response writer format, so you can only get XML, not JSON, etc like you can with /admin/luke. And as mentioned in my previous post, use numTerms=0 for /admin/luke to speed it up. Erik On Nov 21, 2009,

Re: getting total index size & last update date/time from query

2009-12-01 Thread Erik Hatcher
Use numTerms=0 - /admin/luke?numTerms=0 that'll speed it up tons. Erik On Dec 1, 2009, at 10:46 AM, Joel Nylund wrote: Hi, Luke worked, but we are finding it really slow in our environment (8-10 seconds). Is there a way to just get document count & last index time with a faster cal

Re: getting total index size & last update date/time from query

2009-12-01 Thread Joel Nylund
Hi, Luke worked, but we are finding it really slow in our environment (8-10 seconds). Is there a way to just get document count & last index time with a faster call, possibly passing something to luke? thanks Joel On Nov 19, 2009, at 11:54 AM, Binkley, Peter wrote: The Luke request handler

Re: How to avoid hardcoding masterUrl in slave solrconfig.xml?

2009-12-01 Thread William Pierce
Thanks, NobleThat did the trick! - Bill -- From: "Noble Paul നോബിള്‍ नोब्ळ्" Sent: Monday, November 30, 2009 10:20 PM To: Subject: Re: How to avoid hardcoding masterUrl in slave solrconfig.xml? remove the section from your solrconfig. It s

Re: Phrase Query Issue

2009-12-01 Thread Erick Erickson
Well, I don't think this is done normally. I'm assuming here that you've simplified the example and your *real* requirements aren't quite what you're showing, because what you've described seems really confusing to a user. That said, I don't think SOLR has a way to handle this out-of-the-box. What

RE: latency in solr response is observed after index is updated

2009-12-01 Thread Bharath Venkatesh
Hi Kalidoss, I am not aware of using solr-config for committing the document . but I have mentioned below how we update and commit documents: curl http://solr_url/update --data-binary @feeds.xml -H 'Content-type:text/xml; charset=utf-8' curl http://solr_url/update --data-binary '' -H 'C

Re: Retrieving large num of docs

2009-12-01 Thread Raghuveer Kancherla
Hi Hoss/Andrew, I think I solved the problem of retrieving 300 docs per request for now. The problem was that I was storing 2 moderately large multivalued text fields though I was not retrieving them during search time. I reindexed all my data without storing these fields. Now the response time (t

Re: latency in solr response is observed after index is updated

2009-12-01 Thread kalidoss
r u using solr-config for committing the document? bharath venkatesh wrote: Hi, We are observing latency (some times huge latency upto 10-20 secs) in solr response after index is updated . whats the reason of this latency and how can it be minimized ? Note: our index size is pretty larg

latency in solr response is observed after index is updated

2009-12-01 Thread bharath venkatesh
Hi, We are observing latency (some times huge latency upto 10-20 secs) in solr response after index is updated . whats the reason of this latency and how can it be minimized ? Note: our index size is pretty large. any help would be appreciated as we largely affected by it Thanks in ad

Re: 'Connection reset' in DataImportHandler Development Console

2009-12-01 Thread Noble Paul നോബിള്‍ नोब्ळ्
The debug tool for DIH dires queries in sync mode. it waits fro the import to complete for the page to show up. If the process takes long you r likely to see the connection reset message. For get about debug. what exactly do you want to do? 2009/8/17 Noble Paul നോബിള്‍ नोब्ळ् : > apparently I do

Re: Thought that masterUrl in slave solrconfig.xml is optional...

2009-12-01 Thread Noble Paul നോബിള്‍ नोब्ळ्
remove the slave section completely and startup will go thru fine On Tue, Dec 1, 2009 at 2:47 AM, William Pierce wrote: > Folks: > > Reading the wiki,  I saw the following statement: >  "Force a fetchindex on slave from master command : > http://slave_host:port/solr/replication?command=fetchinde