Re: How to deal with many files using solr external file field

2011-06-07 Thread Simon Rosenthal
Can you provide a stack trace for the OOM eexception ? On Tue, Jun 7, 2011 at 4:25 PM, Bohnsack, Sven wrote: > Hi all, > > we're using solr 1.4 and external file field ([1]) for sorting our > searchresults. We have about 40.000 Terms, for which we use this sorting > option. > Currently we're runn

Re: Find newly added documents

2010-01-23 Thread Simon Rosenthal
"newly added" is a bit vague. Do you mean "since last Sunday" ? "between the last and the one before that" ? Also, do you need to distinguish between updated and newly added documents ? Perhaps you could be more specific about the use case. -Simon On Fri, Jan 22, 2010 at 4:25 AM, Erik Hatcher

Re: unloading a solr core doesn't free any memory

2010-02-08 Thread Simon Rosenthal
What Garbage Collection parameters is the JVM using ? the memory will not always be freed immediately after an event like unloading a core or starting a new searcher. 2010/2/8 Tim TerlegÄrd > To me it doesn't look like unloading a Solr Core frees the memory that > the core has used. Is this ho

Re: HttpDataSource consume REST API with Authentication required

2010-03-04 Thread Simon Rosenthal
http://issues.apache.org/jira/browse/SOLR-1490 has a patch which will do what you want -Simon On Thu, Mar 4, 2010 at 2:21 PM, javaxmlsoapdev wrote: > > I have to use > > http://wiki.apache.org/solr/DataImportHandler#Usage_with_XML.2BAC8-HTTP_Datasource > HttpDataSource to ask Solr consume my

Re: Indexing a word in url

2008-04-02 Thread Simon Rosenthal
I also couldn't get the exact results I wanted for indexing URL components using WordDelimeterFilter or patternTokenizer, so resorted to adding a new field ('pathparts'), plus a few lines of code to generate the tokens in our content preprocessor which submits documents to SOLR for indexing. -Si

Re: SolrClient from inside processAdd function

2019-09-04 Thread Simon Rosenthal
Similarly, I had considered a URP which would call the Solr Tagger to add new metadata fields for indexing to incoming documents (and recall discussing this with David Smiley), but eventually decided against this approach on the grounds of complexity. -Simon On Wed, Sep 4, 2019 at 2:10 PM Arnold

Re: Solr Text Tagger | All tags in desc order

2019-10-04 Thread Simon Rosenthal
Hi Vipul: I'm not sure what you mean by 'score' in this context, as tagging requests do not return a standard Solr/Lucene score. If you're looking for the number of times a specific tag occurs in the tagged text, then you'll need to calculate that in your application from the returned JSON. HTH