Re: Phrase Query Issue

2009-11-30 Thread ravicv
Hi I have a problem with phrase search. If I search test then tests is also coming in search result. Please help me ... My schema continues... fieldType name=text class=solr.TextField positionIncrementGap=100 type=index tokenizer class=solr.WhitespaceTokenizerFactory/

Best way to index huge data quickly in solr multi core configuration

2012-03-21 Thread ravicv
Hi I am using Oracle Exadata as my DB. I want to index nearly 4 crore rows. I have tried with specifing batchsize as 1. and with out specifing batchsize. But both tests takes nearly same time. Could anyone suggest me best way to index huge data Quickly? Thanks Ravi -- View this message in

Re: Can solr index folder can be moved from one system to another?

2012-03-22 Thread ravicv
Hi Tomás, I can not use Solr replcation in my scenario. My requirement is to gzip the solr index folder and send to dotnet system through webservice. Then in dotnet the same index folder should be unzipped and same folder should be used as an index folder through solrnet . Whether my

Re: Group by distance

2012-04-24 Thread ravicv
Use group=true and group.field in your query. And your solr version should be solr 3.4 and above. Thanks, Ravi -- View this message in context: http://lucene.472066.n3.nabble.com/Group-by-distance-tp3934876p3934886.html Sent from the Solr - User mailing list archive at Nabble.com.

Problem with AND clause in multi core search query

2012-05-15 Thread ravicv
Hi, I have 2 cores configured in my solr instance. Both cores are using same schema. I have indexed column1 in core0 and column2 in core1 My search query is http://localhost:8983/solr/core0/select?shards=localhost:8983/solr/core0,localhost:8983/solr/core1q=column1:A; AND column2:B No result

Re: Problem with AND clause in multi core search query

2012-05-15 Thread ravicv
Thanks Tommaso . Could you please tell me is their any way to get this scenario to get worked? http://localhost:8983/solr/core0/select?shards=localhost:8983/solr/core0,localhost:8983/solr/core1q=column1:A; AND column2:B Is their any way we can achieve this below scenario query : column1:A

Query regarding multi core search

2012-05-15 Thread ravicv
HI, I want to configured 2 cores in my SOLR instance. Now i want to query core0 with different query and core1 with diffrent query and finally merge the results . Please suggest me the best way to do this . Thanks Ravi -- View this message in context:

Re: Problem with AND clause in multi core search query

2012-05-15 Thread ravicv
Hi Erick , My Schema is as follows field name=id type=string indexed=true stored=true required=true / field name=value type=string indexed=true stored=true / field name=column1 type=string indexed=true stored=true/ field name=column2 type=string indexed=true stored=true / My data

Re: Problem with AND clause in multi core search query

2012-05-16 Thread ravicv
Hi Eric, So for this scenario i wrote a custom request handler and get individual results from each core and then i am applying *AND * clause up on the results. Please let me know whether this approach will cause any other disturbances/Issues later? Or can you suggest me some other approach?

Solr Search Across Multiple Cores not working when quering on specific field

2011-12-14 Thread ravicv
I have two Solr cores. Core0 and core1 Both cores are having same schema and configuration. after indexing both cores data is retried from both cores individually http://localhost:8983/solr/core0/select?q=fieldName:%22United%22 http://localhost:8983/solr/core1/select?q=fieldName:%22United%22

Re: Solr Search Across Multiple Cores not working when quering on specific field

2011-12-15 Thread ravicv
Hi I was able to do it by changing datatype of all field to textgen from textTight. I am not sure whats wrong with textTight datatype. Also can you please suggest me the best way to index huge database data. Currently I tried with dataimporthandler and CVS import . But both are giving almost

Specifing BatchSize parameter in db-data-config.xml will improve performance?

2011-12-15 Thread ravicv
Hi I am using Oracle Exadata as my DB. I want to index nearly 4 crore rows. I have tried with specifing batchsize as 1. and with out specifing batchsize. But both tests takes nearly same time. Could anyone suggest me best way to index huge data Quickly? -- View this message in context:

How to index and search string which contains double quotes ()

2012-06-27 Thread ravicv
Hi, *My input string is *: Hi how r u Test I need to index this input text with double quotes. but solr is removing double quotes while indexing . I am using *string *as the data type if test is searched then i am able to get result as Hi how r u Test (without double quotes) How to get search

Query regarding dataimporthandler

2012-08-14 Thread ravicv
Hi, Is there any way for intermediate commits while indexing data using dataimport handler? I am using 1.4 solr version. My problem is : Some times while indexing huge data about 4 GB , after indeixng it is while commit process is going on if any user searches the data sometimes solr is

Query regarding multi core search

2012-08-23 Thread ravicv
Hi, How sorting is done in SOLR with multiple cores .. say 20 cores.. because in multi core search it should search in all cores then on complete results it should sort... please correct me if i am wrong. In our scenario we are executing same query on 4 cores and finally sorting the results

Re: Query regarding multi core search

2012-08-26 Thread ravicv
Hi Erick Thanks For reply. My use case is I have 50 fields to index , but at the time of index all 50 fields data is unavailable. So we have divided them in to 24 separate cores and indexing . we are using shards for querying. But the problem is each core is having huge data. Total size of

Solr index doubles after replication

2012-09-04 Thread ravicv
Hi, We have configured replication in our solr setup. After replication master index size grows to double the size even though maxNumberOfBackups is not configured in my solrconfig.xml *Master replication handler* requestHandler name=/replication class=solr.ReplicationHandler lst

Problem after replication using solr 1.4

2012-09-04 Thread ravicv
Hi, We have configured replication in our solr setup. After replication master index size grows to double the size even though maxNumberOfBackups is not configured in my solrconfig.xml Master replication handler requestHandler name=/replication class=solr.ReplicationHandler lst

Re: How to retrive value from float field in custom request handler?

2012-09-27 Thread ravicv
Thanks guys.. I was able to retrieve all values now.. But why Solr Field is not having a method to retrieve values for all data types? something similar to Object obj = doc.getField(Field1); Why only stringvalue is exposed in this Field class? doc.getField(Field1).stringValue() Thanks, ravi

Form too large error in SOLR4.0

2012-10-10 Thread ravicv
Hi, Recently we have upgraded solr 1.4 version to 4.0 version. After upgrading we are experiencing unusual behavior in SOLR4.0. The same query is working properly in solr 1.4 and it is throwing SEVERE: null:java.lang.IllegalStateException: Form too large161138720 error in solr4.0. I have