Re: Strange Behavior When Using CSVRequestHandler

2010-01-07 Thread danben
and NOT analyzer it in any way... You could hash your sentences and define the hash as your unique key. You could HTH Erick On Wed, Jan 6, 2010 at 1:06 PM, danben dan...@gmail.com wrote: The problem: Not all of the documents that I expect to be indexed are showing up in the index

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: analyzer type=index tokenizer

Re: Faceted Search on Dynamic Fields?

2009-09-25 Thread danben
Also, here is the field definition in the schema dynamicField name=*amp;STRING_NOT_ANALYZED_YES type=string indexed=true stored=true multiValued=true/ -- View this message in context: http://www.nabble.com/Faceted-Search-on-Dynamic-Fields--tp25612887p25612936.html Sent from the Solr

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.5, I decided to modify CoreContainer

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 have

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

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 want to query with SolrJ

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

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