Problem After Modifying CoreContainer

2009-07-31 Thread danben
Hi, I'm developing an application that requires a large number of cores, and since lazy loading / LRU caching won't be available until 1.5, I decided to modify CoreContainer to hold me over. Another requirement is that multiple Solr instances can access the same cores (on NAS, for instance), so

Re: Problem After Modifying CoreContainer

2009-07-31 Thread danben
And, re-examining the URL, this is clearly my fault for improper use of SolrJ. Please ignore. danben wrote: > > Hi, > > I'm developing an application that requires a large number of cores, and > since lazy loading / LRU caching won't be available until 1

Faceted Search on Dynamic Fields?

2009-09-25 Thread danben
I'm trying to perform a faceted query with the facet field referencing a field that is not in the schema but matches a dynamicField with its suffix. The query returns results but for some reason the facet list is always empty. When I change the facet field to one that is explicitly named in the

Re: Faceted Search on Dynamic Fields?

2009-09-25 Thread danben
Also, here is the field definition in the schema -- View this message in context: http://www.nabble.com/Faceted-Search-on-Dynamic-Fields--tp25612887p25612936.html Sent from the Solr - User mailing list archive at Nabble.com.

SolrException - Lock obtain timed out, no leftover locks

2009-07-08 Thread danben
Hi, I'm running Solr 1.3.0 in multicore mode and feeding it data from which the core name is inferred from a specific field. My service extracts the core name and, if it has not seen it before, issues a create request for that core before attempting to add the document (via SolrJ). I have a poo

Question About Solr Cores

2009-07-10 Thread danben
Hi, I'm building an application that dynamically instantiates a large number of solr cores on a single machine (large would ideally be as high as I can get it, in the millions, if it is possible to do so without significant performance degradation and/or system failure). I already tried this sam

Problems Issuing Parallel Queries with SolrJ

2009-07-16 Thread danben
I have a running Solr (1.3) server that I want to query with SolrJ, and I'm running a benchmark that uses a pool of 10 threads to issue 1000 random queries to the server. Each query executes 7 searches in parallel. My first attempt was to use a single instance of CommonsHttpSolrServer, using the

Re: Problems Issuing Parallel Queries with SolrJ

2009-07-16 Thread danben
Actually, it's obvious that the second case wouldn't work after looking at SimpleHttpConnectionManager. So my question boils down to being able to use a single CommonsHttpSolrServer in a multithreaded fashion. danben wrote: > > I have a running Solr (1.3) server that I wa

Re: SolrException - Lock obtain timed out, no leftover locks

2009-07-22 Thread danben
Sorry, I thought I had removed this posting. I am running Solr over HTTP, but (as you surmised) I had a concurrency bug. Thanks for the response. Dan hossman wrote: > > > My only guess here is that you are using SolrJ in an embedded sense, not > via HTTP, and something about the code you h

Strange Behavior When Using CSVRequestHandler

2010-01-06 Thread danben
The problem: Not all of the documents that I expect to be indexed are showing up in the index. The background: I start off with an empty index based on a schema with a single field named 'query', marked as unique and using the following analyzer:

Re: Strange Behavior When Using CSVRequestHandler

2010-01-07 Thread danben
> RemoveDuplicatesFilter would make "interesting interesting" and > "interesting" identical > > You could define a second field, make *that* one unique and NOT analyzer > it in any way... > > You could hash your sentences and define the hash as your unique