Re: SPLITSHARD in SOLR 5.5.1

2017-08-25 Thread Vannia Rajan
ly) half the size of your old shard? If so, > copy them somewhere while you investigate what is deleting the data > directories, Solr should absolutely not be doing that. My guess is > it's something external to Solr that wiped them somehow, but how I > have no clue. > > Best

Re: SPLITSHARD in SOLR 5.5.1

2017-08-24 Thread Vannia Rajan
Binoy, I don't see anything wrong with the logs. The newly split shards are up, with the parent set to inactive. But before restart, the new shards had all of the data as in parent. After a restart, it wiped off to 0. I checked the data directory, the data is completely gone. Below, I attach the

SPLITSHARD in SOLR 5.5.1

2017-08-24 Thread Vannia Rajan
Hi, I'm facing weird issues on using SPLITSHARD on fairly large shards (150GB shard size), using SOLR 5.5.1 in cloud mode (4 nodes, 1 shard per node). After issuing SPLITSHARD, I successfully get the sub-shards activated and my parent shard set "inactive". The newly split shards counts equal the

Re: Custom Shingle Factory Filter Requirement

2011-12-28 Thread Vannia Rajan
On Tue, Dec 27, 2011 at 1:10 PM, Ahmet Arslan wrote: > > To achieve this behavior, you can use StandardTokenizerFactory and > EdgeNGramFilterFactory and LowerCaseFilterFactory at index time. > > > http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.EdgeNGramFilterFactory > Thanks, b

Custom Shingle Factory Filter Requirement

2011-12-26 Thread Vannia Rajan
Hi, I'm trying to implement an advanced Auto-Suggest field. Consider an example input String: "Word1 Word2 Word3 Word4 Word5 Word6" I just want this field to auto-suggest content based on whatever i type (no matter i start typing from word1 or word4). I tried using ShingleFilterFactory,

Re: Solr Quoted search confusions

2009-08-21 Thread Vannia Rajan
your problem. > > Thanks, > Chris > > On Fri, Aug 21, 2009 at 7:16 AM, Vannia Rajan >wrote: > > > Hi, > > > > On Thu, Aug 20, 2009 at 9:13 PM, Chris Male wrote: > > > > > Hi, > > > > > > What analyzers/filters have you c

Re: Solr Quoted search confusions

2009-08-20 Thread Vannia Rajan
ription" (which has various forms of word "ilike": Is there anything that i could tune here to get the intended results? > > Thanks > Chris > > On Thu, Aug 20, 2009 at 5:29 PM, Vannia Rajan >wrote

Solr Quoted search confusions

2009-08-20 Thread Vannia Rajan
Hi,* *I need some help to clarify how solr indexes documents. I have 6 documents with various forms of the word "ilike" (complete word and not "i like") - one having "ilike" as such and others having a special character in between "i" and "like". What i expected from solr is that, when i do

Re: Recreating SOLR index after a schema change - without having to re-post the data

2009-07-31 Thread Vannia Rajan
On Fri, Jul 31, 2009 at 3:22 PM, Erik Hatcher wrote: > You'll have to reindex your documents from scratch. Such is the nature of > changing the schema of an index. It's always a great idea (in fact, I'd say > mandatory) to have a full reindex process handy. > > Thank you for your response. Yes,

Re: Recreating SOLR index after a schema change - without having to re-post the data

2009-07-31 Thread Vannia Rajan
On Fri, Jul 31, 2009 at 3:17 PM, Tim Sell wrote: > Are you using solr as a data store? > No, data comes from somewhere else, solr is just for indexing giving back query results. > > It is not possible via solr to change existing documents in a solr > index. It would be a nice feature though. >

Recreating SOLR index after a schema change - without having to re-post the data

2009-07-30 Thread Vannia Rajan
Hi, We are using solr-server for a large data-set. We need some changes in solr schema.xml (datatype change from integer to sint for few fields). It turns out that the two datatypes (integer and sint) are incompatible and hence we need to re-index SOLR. My question is: Is there any way by wh

Re: Posting multiple documents at once - clarification

2009-07-20 Thread Vannia Rajan
2009/7/20 Noble Paul നോബിള്‍ नोब्ळ् > if the error is an xml parsing error there is no way of continuing > from that point. even otherwise , solr assumes that if the whole > payload is not correct it is to be discarded > > Thank you for your response -- Thanks, Vanniarajan

Posting multiple documents at once - clarification

2009-07-20 Thread Vannia Rajan
Hi, When we post a file with a number of documents of the format shown below to solr, if there is some 'error' in one of the , then all the s in the file are error-ed out and not added to the Solr-index. ...

Re: permanently setting log level?

2009-01-29 Thread Vannia Rajan
> > i'm not using tomcat, i'm using the default jetty setup that comes with > solr. i grepped through the entire solr installation for 'INFO' but i don't > see it. > > i don't really know anything about jetty other than i have to run java -jar > start.jar to get it to run solr. > > If you are not

Re: permanently setting log level?

2009-01-29 Thread Vannia Rajan
On Thu, Jan 29, 2009 at 11:55 PM, Jon Drukman wrote: > if i go to /solr/admin/logging, i can set the "root" log level to WARNING, > which is what i want. however, every time solr restarts, it is set back to > INFO. Is there a way to get the WARNING level to stick permanently? > > Hi, You can se

Getting Field(s) Information If I have Unique Key Field-Value or the corresponding Doc Number

2008-12-17 Thread Vannia Rajan
Hi, I need to resolve the following issue: I need to get the Value of all the FIELDS defined in solrconfig.xml when i have the Value of the Unique-Key-Field or the corresponding Doc Number. I require this because, we need to find the value of a particular field, if a document is Duplicated. *Pro