Re: Tagging

2007-02-23 Thread Erik Hatcher
On Feb 22, 2007, at 11:30 PM, Gmail Account wrote: I use solr for searching and facets and love it.. The performance is awesome. However I am about to add tagging to my application and I'm having a hard time deciding if I should just database my tags for now until a better solr solution

index browsing with solr

2007-02-23 Thread Pierre-Yves LANDRON
Hello everybody, I'm new to this mailing list, so excuse me if my question has already been debated here (I've searched on the web and found nothing about it). I've used solr for two weeks now, and so far it's a really neat solution. I've replaced my previous index searcher app by solr in my

Re: index browsing with solr

2007-02-23 Thread Ryan McKinley
Does an implementation of this method exists in solr ? i don;t think so. If not, is it difficult to develop new instructions for solr ? where I must start to do so ? it will be easy to add. take a look at a simple SolrRequestHandler:

Problem indexing

2007-02-23 Thread Otis Gospodnetic
Hi, This is related to SOLR-81. Things bomb when I try indexing with my probably misconfigured schema.xml: - see it at http://www.krumpir.com/schema.xml - I added a few new fieldTypes, fields, and copyFields - just the diff: http://www.krumpir.com/schema.xml-diff.txt I've created a

Re: Problem indexing

2007-02-23 Thread Yonik Seeley
On 2/23/07, Otis Gospodnetic [EMAIL PROTECTED] wrote: Hi, This is related to SOLR-81. Things bomb when I try indexing with my probably misconfigured schema.xml: - see it at http://www.krumpir.com/schema.xml - I added a few new fieldTypes, fields, and copyFields - just the diff:

Re: Problem indexing

2007-02-23 Thread Otis Gospodnetic
Oh, look at that, adding field name=id1/field took care of the bombing, nice! Thanks, Otis I tried posting that, like this: $ java -jar post.jar http://localhost:8983/solr/update dictionary.xml That bombed with this: SimplePostTool: WARNING: Unexpected response from Solr: 'result

Re: Problem indexing

2007-02-23 Thread Walter Underwood
It is a bug, though. That should send an error message, not a stack trace. --wunder On 2/23/07 10:39 AM, Otis Gospodnetic [EMAIL PROTECTED] wrote: Oh, look at that, adding field name=id1/field took care of the bombing, nice! Thanks, Otis I tried posting that, like this: $ java -jar

Re: Problem indexing

2007-02-23 Thread Chris Hostetter
: It is a bug, though. That should send an error message, not a : stack trace. --wunder I opened SOLR-172 to track getting a better exception then an NPE in this case, but that *is* an error message being returned to the client, the message just happens to be a stack trace ... SOLR-141 should

Re: index browsing with solr

2007-02-23 Thread Yonik Seeley
On 2/23/07, Pierre-Yves LANDRON [EMAIL PROTECTED] wrote: I've used solr for two weeks now, and so far it's a really neat solution. I've replaced my previous index searcher app by solr in my current project, but can not find a way to substitute the browseIndex(field, startterm,

WordNet Ontologies

2007-02-23 Thread rubdabadub
Hi: Does Solr supports ontology somehow? Has it been tried? Any tips on how should I go about doing so? Thanks. Regards

Re: lots of inserts very fast, out of heap or file descs

2007-02-23 Thread Yonik Seeley
On 2/23/07, Brian Whitman [EMAIL PROTECTED] wrote: I'm trying to add lots of documents at once (hundreds of thousands) in a loop. I don't need these docs to appear as results until I'm done, though. For a simple test, I call the post.sh script in a loop with the same moderately sized xml file.

Re: lots of inserts very fast, out of heap or file descs

2007-02-23 Thread Brian Whitman
Try not committing so often (perhaps until you are done). Don't use post.sh, or modify it to remove the commit. OK, I modified it to not commit after and I also realized I had SOLR-126 (autocommit) on, which I disabled. Is there a rule of thumb on when to commit / optimize? Part of

Re: WordNet Ontologies

2007-02-23 Thread Erik Hatcher
On Feb 23, 2007, at 5:33 PM, rubdabadub wrote: Does Solr supports ontology somehow? Has it been tried? Any tips on how should I go about doing so? What are you wanting to do exactly? Erik

Re: lots of inserts very fast, out of heap or file descs

2007-02-23 Thread Yonik Seeley
On 2/23/07, Brian Whitman [EMAIL PROTECTED] wrote: Try not committing so often (perhaps until you are done). Don't use post.sh, or modify it to remove the commit. OK, I modified it to not commit after and I also realized I had SOLR-126 (autocommit) on, which I disabled. Is there a rule of

Re: lots of inserts very fast, out of heap or file descs

2007-02-23 Thread Brian Whitman
On Feb 23, 2007, at 8:31 PM, Yonik Seeley wrote: -- it does not go down until I restart solr. This would be the cause of my too many files open problem. Turning off autocommit / not commiting after every add keeps this count steady at 100-200. The files are all of type: [...] Bug or feature?

Re: lots of inserts very fast, out of heap or file descs

2007-02-23 Thread Chris Hostetter
it sounds like we may have a very bad bug in the XmlUpdateRequestHandler to clarify for people who may not know: the long standing /update URL has historicaly been handled using a custom servlet, recently some of that code was refactored into a RequestHandler along with a new Dispatcher for