Solrcloud Relication issue

2012-12-23 Thread hupadhyay
Hi all, I am using *solrcloud, 2 shard 2 replica* configuration. I am importing data into solr index using jdbc data source and solr DIH.My problem is when there are only shard nodes are up , no replica is up and i am importing data into solr and then i start replica nodes to replicate the index.

Re: multi field query with selective results

2012-12-23 Thread Shawn Heisey
On 12/23/2012 9:09 PM, Lance Norskog wrote: A thousand pardons! Thunderbird displayed your email as a hijack. Now, it does not. I really wish everyone's code could be free of bugs, like my code is :) If you (or anyone else) has a problem like this again, go into thunderbird's config editor and

Re: multi field query with selective results

2012-12-23 Thread Lance Norskog
A thousand pardons! Thunderbird displayed your email as a hijack. Now, it does not. I really wish everyone's code could be free of bugs, like my code is :) On 12/23/2012 01:38 AM, J Mohamed Zahoor wrote: I don't think I hijacked any thread. it is a new thread. Can you please enlighten me? On

Re: Struggling with solr 4.0 and zookeeper - multiple solr collection and configs

2012-12-23 Thread Erick Erickson
You haven't indicated whether you tried what I pointed you at, you only repeated that you tried bootstrapping on the example directory, _not_ wherever you put your multi-core configuration. I've seen the example I mentioned work like a champ. Really, try it. I'd think about using the latest solr

Re: Exact Search

2012-12-23 Thread Erick Erickson
Well, string types are not analyzed at all, so if the town is "Dundee", this will not match. If you haven't seen the admin/analysis page, that's the first place I'd start. Followed by adding &debugQuery=true and looking at the results. Best Erick On Sat, Dec 22, 2012 at 1:04 PM, hank williams

Re: Dynamic collections in SolrCloud for log indexing

2012-12-23 Thread Erick Erickson
I think this is one of the primary use-cases for custom sharding. Solr 4.0 doesn't really lend itself to this scenario, but I _believe_ that the patch for custom sharding has been committed... That said, I'm not quite sure how you drop off the old shard if you don't need to keep old data. I'd gues

Re: Bad performance while query pdf solr documents

2012-12-23 Thread Dirk Högemann
Do you really need them all in the response to show them in the results? As you define them as not stored now this does not seem so. 2012/12/23 Otis Gospodnetic > Hi, > > You can specify them in solrconfig.xml for your request handler, so you > don't have to specify it for each query unless you

Re: solr 4 plugins

2012-12-23 Thread Otis Gospodnetic
Hi, You could use them for rescoring for sure. Faceting would require a bigger surgery procedure. Otis Solr & ElasticSearch Support http://sematext.com/ On Dec 23, 2012 9:04 AM, "Giovanni Bricconi" wrote: > This is really interesting! > Do you know if these added fields can be used in sorting o

Re: solr 4 plugins

2012-12-23 Thread Giovanni Bricconi
This is really interesting! Do you know if these added fields can be used in sorting or faceting? Tanks Il giorno 23/dic/2012 14:08, "Otis Gospodnetic" ha scritto: > Hi, > > Look into writing a custom SearchComponent. > > Otis > Solr & ElasticSearch Support > http://sematext.com/ > On Dec 23, 201

Re: Bad performance while query pdf solr documents

2012-12-23 Thread uwe72
we have more than hundreds fields...i don't want to put them all to the fl parameters is there a other way, like to say return all fields, except the fields...? anyhow i will change the field from stored to stored=false in the schema. -- View this message in context: http://lucene.472066.

Re: multi field query with selective results

2012-12-23 Thread J Mohamed Zahoor
I don't think I hijacked any thread. it is a new thread. Can you please enlighten me? On Sunday, December 23, 2012, Lance Norskog wrote: > Please start a new thread. > > Thanks! > > On 12/22/2012 11:03 AM, J Mohamed Zahoor wrote: > >> Hi >> >> I have a word completion requirement where i need to

Re: Bad performance while query pdf solr documents

2012-12-23 Thread Dirk Högemann
You can define the fields to be returned with the fl parameter fl=the, needed, fields - usually the score and the id... 2012/12/23 uwe72 > hi > > i am indexing pdf documents to solr by tika. > > when i do the query in the client with solrj the performance is very bad > (40 > seconds) to load 100

Re: Bad performance while query pdf solr documents

2012-12-23 Thread Upayavira
You make the text field stored="false" in your schema, then reindex. Then it won't show in search results. Upayavira On Sun, Dec 23, 2012, at 09:27 AM, uwe72 wrote: > >>>your query-time fl parameter. > > means "don't return" this field? > > because we have many many fields, so probably now i u

Re: Bad performance while query pdf solr documents

2012-12-23 Thread uwe72
>>>your query-time fl parameter. means "don't return" this field? because we have many many fields, so probably now i use the default and all fields will be loaded. so i just want to tell the query to don't load the "text" field. I do this with the fl parameter? -- View this message in conte