RE: Problem with setting solr.solr.home property

2009-02-03 Thread Manupriya
Thanks everyone!! Finally got a solution for this problem on Jetty Server. Instead of setting Java system variables like JAVA_OPTS=-Dsolr.solr.home="C:\SOLR\apache-solr-1.3.0\apache-solr-1.3.0\example\solr", we can provide the vm arguments directly while starting the jetty server. I am running

Re: Problem with setting solr.solr.home property

2009-02-03 Thread Manupriya
Thanks Ralf, Yeah... I can add the system preoprty through web.xml. But as I am deploying my application for a production environment, I dont want to make changes to web.xml. :confused: Kraus, Ralf | pixelhouse GmbH wrote: > > Manupriya schrieb: >> Hi, >> >> Till no

Problem with setting solr.solr.home property

2009-02-03 Thread Manupriya
Hi, Till now I was working with the jetty server bundled with the SOLR distribution. But I want to deploy solr.war to another jetty server. Here I am facing some problem with solr/home. Whenever I start the jetty server, I get the following error - ---

Re: How to schedule delta-import and auto commit

2009-01-21 Thread Manupriya
ex. So I wanted to understand that if there are no updates, will caching create some problems with memory? Thanks, Manu Shalin Shekhar Mangar wrote: > > On Wed, Jan 21, 2009 at 4:31 PM, Manupriya > wrote: > >> >> 2. I had asked peviously regarding caching and memory >&

How to schedule delta-import and auto commit

2009-01-21 Thread Manupriya
Hi, Our Solr server is a standalone server and some web applications send HTTP query to search and get back the results. Now I have following two requirements - 1. we want to schedule 'delta-import' at a specified time. So that we dont have to explicitly send a HTTP request for delta-import.

Re: Searching for 'A*' is not returning me same result as 'a*'

2009-01-20 Thread Manupriya
:1+mid:7c6bf6e7p755eu67+state:results http://www.mail-archive.com/solr-user@lucene.apache.org/msg08542.html Thanks, Manu Manupriya wrote: > > Hi, > > I am using the following analyser for indexing

Searching for 'A*' is not returning me same result as 'a*'

2009-01-19 Thread Manupriya
Hi, I am using the following analyser for indexing and querying - --

Re: How to open a new searcher and close the old one

2009-01-16 Thread Manupriya
Thanks for the information!! So can I safely assume that we will not face any memory issue due to caching even if we do not send commit that frequently? (If we wont send commit, then new searcher wont be initialized. So I can assume that the current searcher will correctly manage cache without an

How to open a new searcher and close the old one

2009-01-16 Thread Manupriya
Hi, We are using Solr as a standalone server. And our web application sends a HTTP request for searching. We receive JSON result back and use the result. I had initailly asked about Searher (http://www.nabble.com/What-do-we-mean-by-Searcher--td21436737.html). Now I understand it better. As per

Re: What do we mean by Searcher?

2009-01-14 Thread Manupriya
apache.org/solr/?action=fullsearch&context=180&value=autowarm&fullsearch=Text > > Otis > -- > Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch > > > > - Original Message >> From: Manupriya >> To: solr-user@lucene.apache.org >>

What do we mean by Searcher?

2009-01-13 Thread Manupriya
Hi, I am somehow new to Solr. While reading through documents/resources, I have come across 'Searcher' term many times. I am able to roughly undestand, that whenever we fire any query, we are actually invoking a searcher. This searcher searches through the index and returns results. But I am not

Re: Restricting results based on user authentication

2009-01-12 Thread Manupriya
ler approach, then it basically > amounts to the same thing as the above; the only difference is that > the filter query gets added internally by Solr, rather than at the > application level. > > Sorry if you already understand all this; I'm throwing these comments > out just

Re: To get all indexed records.

2009-01-12 Thread Manupriya
Hi Tushar, 1. If you are using SOLR admin console to search record, then default query '*:*' in the Query String search box will serve the purpose. 2. If you directly want to send an HTTP request for retrieving records then you can hit a URL similar to following - http://localhost:8983/solr/sel

Restricting results based on user authentication

2009-01-12 Thread Manupriya
Hi, I am using DIH feature of Solr for indexing a database. I am using Solr server and it is independent of my web application. I send a http request for searching and then process the returned result. Now we have a requirement that we have to filter the results further based on security level r

Re: Is there any better way to configure db-data-config.xml

2009-01-07 Thread Manupriya
INSTITUTION is the child entity. How else can I specify the relationship? Thanks, Manu Noble Paul നോബിള്‍ नोब्ळ् wrote: > > why do you have multiple root entities ? > > > > On Wed, Jan 7, 2009 at 7:48 PM, Manupriya > wrote: >> >> Hi, >> >>

Is there any better way to configure db-data-config.xml

2009-01-07 Thread Manupriya
Hi, I am using the following schema - http://www.nabble.com/file/p21332196/table_stuct.gif 1. INSTITUTION table is the main table that has information about all the institutions. 2. INSTITUTION_TYPE table has 'institute_type' and its 'description' for each 'institute_type_id' in the INSTITUTI

Re: Delta DataImport is not picking the modified value in DB

2008-12-30 Thread Manupriya
so some looking into the code. I wrongly assumed it to behave like normal SQL query. Is this case-sensitivity intentional? Is it documented somewhere that I can refer for constructing queries for Delta/Full Import? Thanks, Manu Noble Paul നോബിള്‍ नोब्ळ् wrote: > > On Mon, Dec 29, 2008 a

Re: Delta DataImport is not picking the modified value in DB

2008-12-29 Thread Manupriya
d a nightly build for it to work. > > On Mon, Dec 29, 2008 at 4:57 PM, Manupriya > wrote: > >> >> Hi Noble, >> >> I tried with the deltaImportQuery as well. But still I am getting the >> same >> exception on the server console - >> >

Re: Delta DataImport is not picking the modified value in DB

2008-12-29 Thread Manupriya
'${item_category.CATEGORY_ID}'" >deltaQuery="select ID from category where > last_modified > '${dataimporter.last_index_time}'" > parentDeltaQuery="select ITEM_ID, CATEGORY_ID from > item_category where CATEGORY

Re: Delta DataImport is not picking the modified value in DB

2008-12-29 Thread Manupriya
wrong here? Thanks, Manu Shalin Shekhar Mangar wrote: > > What does your data-config look like? especially the delta query part. > > On Mon, Dec 29, 2008 at 2:35 PM, Manupriya > wrote: > >> >> Hi, >> >> I am using Delta DataImport feature to partially refr

Delta DataImport is not picking the modified value in DB

2008-12-29 Thread Manupriya
Hi, I am using Delta DataImport feature to partially refresh the indexes. Note - full-import is working perfectly fine. But I need to do delta-import as I do not want to rebuild all the indexes. My database structure is same as mentioned in the example at http://wiki.apache.org/solr/DataImport

Re: emample for using SOLR for search against database tables

2008-12-23 Thread Manupriya
#x27;t matter) then I > believe you can do that too but I'll leave it to others to describe how to > do that if in fact that is what you want. > > ~ David > > > On 12/23/08 8:17 AM, "Manupriya" wrote: > > > > Hi, > > I am very new to u

emample for using SOLR for search against database tables

2008-12-23 Thread Manupriya
Hi, I am very new to using SOLR. I referred through the documentation for SOLR and tried to understand it. Now have a feel of SOLR. My actual requirement is to use SOLR for search against the database tables. I refered the link at http://wiki.apache.org/solr/DataImportHandler#head-ac5699cd97e4dc