Re: Restricted views of an index

2008-01-25 Thread Karen Loughran
Thanks for the info Ryan & Walter, We're looking into invariants and handler logic as you suggest, Karen On Friday 25 January 2008 15:55:09 Ryan McKinley wrote: > Karen Loughran wrote: > > Hi all, > > > > Is there any interest/activity for SOLR to provide a r

Restricted views of an index

2008-01-25 Thread Karen Loughran
Hi all, Is there any interest/activity for SOLR to provide a restricted view of an index, making only certain fields available/public, depending on the identity of the requesting client ? Certain information in our index is confidential and should only be accessible to certain individuals/gro

Re: XSLT to preprocess XML documents into 'update xml documents' ?

2008-01-17 Thread Karen Loughran
Thanks Ryan, we'll have a go at this, Karen On Tuesday 15 January 2008 16:41:02 Ryan McKinley wrote: > I have not tried it, but check: > https://issues.apache.org/jira/browse/SOLR-285 > > Karen Loughran wrote: > > Hi all, > > > > I noticed some recent disc

XSLT to preprocess XML documents into 'update xml documents' ?

2008-01-15 Thread Karen Loughran
Hi all, I noticed some recent discussion with regard to using XSLT to preprocess XML documents into 'update xml documents' : http://www.mail-archive.com/[EMAIL PROTECTED]/msg05927.html I was wondering if there has been any update to this ? It is something we would be interested in using. Th

Re: field:(-null) returns records where field was not specified

2008-01-15 Thread Karen Loughran
Thanks Chris, this is useful, we can you the query format you suggest, Karen On Tuesday 15 January 2008 01:13:14 Chris Hostetter wrote: > Several things in this thread should be clarified (note: order of > quotations munged for clarity)... > > : I had read this page. But I'm not using the "NOT"

Re: field:(-null) returns records where field was not specified

2008-01-14 Thread Karen Loughran
; > From that page: > Note: The NOT operator cannot be used with just one term. For example, the > following search will return no results: > NOT "jakarta apache" > > > Erick > > On Jan 14, 2008 9:30 AM, Karen Loughran <[EMAIL PROTECTED]> wrote: > > Hi

field:(-null) returns records where field was not specified

2008-01-14 Thread Karen Loughran
Hi all, We are indexing different types of documents, some with certain fields set and some without, some fields sometimes in both. If a particular field is missing in a newly added record, I would have expected the query: field_name:(-null) not to return this particular record in the respo

Re: CollectionDistribution - Changes reflected immediately on master, but only after tomcat restart on slave

2007-10-31 Thread Karen Loughran
t/xml; charset=utf-8' -d ""` I have now added an extra PATH setup in my crontab and it works :) Thanks, Karen On Monday 29 October 2007 15:41:55 Karen Loughran wrote: > Hi Bill, just noticing that in the first instance it states "started by > 1001" and in the 2nd it re

Re: CollectionDistribution - Changes reflected immediately on master, but only after tomcat restart on slave

2007-10-29 Thread Karen Loughran
Hi Bill, just noticing that in the first instance it states "started by 1001" and in the 2nd it reports "started by autodeploy". The user id of autodeploy is in fact 1001. ? Karen On Monday 29 October 2007 15:07:55 Karen Loughran wrote: > Hi Bill, yes, the commit.log s

Re: CollectionDistribution - Changes reflected immediately on master, but only after tomcat restart on slave

2007-10-29 Thread Karen Loughran
ime: 0 sec) Karen On Monday 29 October 2007 14:52:42 Bill Au wrote: > Snapinstaller uses commit to notify Solr to open a new Searcher. Is there > anything in the commit log which shows why the commit failed? > > Bill > > On 10/29/07, Karen Loughran <[EMAIL PROTECTED]>

Re: CollectionDistribution - Changes reflected immediately on master, but only after tomcat restart on slave

2007-10-29 Thread Karen Loughran
but will work by hand ? Thanks Karen On Friday 26 October 2007 16:36:22 Yonik Seeley wrote: > On 10/26/07, Karen Loughran <[EMAIL PROTECTED]> wrote: > > But after distribution of this latest snapshop to the slave the > > collection does not show the update (with solr ad

CollectionDistribution - Changes reflected immediately on master, but only after tomcat restart on slave

2007-10-26 Thread Karen Loughran
Hiya, I have set up solr CollectionDistribution between a master and a slave with postCommit triggering snapshooter, and a cron job (snappuller and snapinstaller) on the slave accepting and installing updated snapshops every 15 minutes. Once I delete a record from the master (with java code

Is it possibily to dynamically/programmatically add new fields

2007-10-23 Thread Karen Loughran
Hi there, Is there a way in Solr to programmatically add new fields (named and dynamic) so that they don't have to be defined statically within "schema.xml" ? thanks Karen

Re: SolrServerException: TEXT must be immediately followed by END_TAG and not START_TAG (position: START_TAG .....

2007-07-23 Thread Karen Loughran
k* it > should work on 1.2. > > Karen Loughran wrote: > > Hi all, Otis, > > > > I am now using the lastest solrj, and am trying to delete a solr record > > with both deleteById and deleteByQuery as follows: > > > > ... > >CommonsH

SolrServerException: TEXT must be immediately followed by END_TAG and not START_TAG (position: START_TAG .....

2007-07-20 Thread Karen Loughran
Hi all, Otis, I am now using the lastest solrj, and am trying to delete a solr record with both deleteById and deleteByQuery as follows: ... CommonsHttpSolrServer solr = new CommonsHttpSolrServer( new URL("http://localhost:8080/solr/";) ); SimpleSolrDoc ex = new Simple

Re: Result from server is not rooted with a tag

2007-07-20 Thread Karen Loughran
---- Original Message > From: Karen Loughran <[EMAIL PROTECTED]> > To: solr-user@lucene.apache.org > Sent: Friday, July 20, 2007 12:41:28 PM > Subject: Result from server is not rooted with a tag > > > Hi all, > > I'm using the code from solr-client which (d

Result from server is not rooted with a tag

2007-07-20 Thread Karen Loughran
Hi all, I'm using the code from solr-client which (downloaded from http://issues.apache.org/jira/browse/SOLR-20) to add new solr records programmatically with java to my db (solr 1.2). Basically: SolrClient client = new SolrClientImpl( new URL(http://localhost:8080/solr/) );

Re: wildcard searches standard request handler

2007-07-10 Thread Karen Loughran
nks FAILED -- saving rejects to file src/java/org/apache/solr/search/SolrQueryParser.java.rej Should this be applied to a different version ? Thanks Karen On Tuesday 10 July 2007 16:21:10 Yonik Seeley wrote: > On 7/10/07, Karen Loughran <[EMAIL PROTECTED]> wrote: > > I understand fro

wildcard searches standard request handler

2007-07-10 Thread Karen Loughran
Hi all, I understand from browsing through the mailing list that I won't be able to perform wildcard searches using disMax request handler. But why doesn't any of the following wildcard searches work when using the standard request handler: Firstly the following query accurately returns 27

most popular/most commonly accessed records

2007-07-06 Thread Karen Loughran
an someone point me to them ? Had a browse through the user documentation, but can't see anything obvious ? Many thanks Karen Loughran

Re: Solr Server Configuration

2007-07-06 Thread Karen Loughran
I use solr with tomcat 5.5.23. I have successfully used Darren Erik Vengroff's java client for adding and deleting found on this page. http://wiki.apache.org/solr/SolJava I also successfully use EmbeddedSolr for direct API usage (found at the end of this link) Karen On Friday 06 July 2007

Re: java.lang.ExceptionInInitializerError - Can't find resource 'solrconfig.xml'

2007-07-04 Thread Karen Loughran
Chris, When I remove the surrounding quotes from solr path in my web.xml it works ! Thanks for your help Karen On Wednesday 04 July 2007 16:56:40 Chris Hostetter wrote: > : But if I put a webservice infront of it ,which essentially provides an > : webapp api to the standalone (deployed in tomcat

java.lang.ExceptionInInitializerError - Can't find resource 'solrconfig.xml'

2007-07-04 Thread Karen Loughran
Hi there, I have a standalone java/solr embedded application (based on Embedded Solr). I can call it from the command prompt by passing solr.home as system property ( -Dsolr.solr.home=/opt/all/solr ) and all works fine. But if I put a webservice infront of it ,which essentially provides an web

Re: solr-1.2.0 java.util.concurrent.RejectedExecutionException

2007-06-29 Thread Karen Loughran
non-daemon threads ? My utility jar is a standalone java library (not a webservice). Many thanks, Karen On Friday 29 June 2007 15:00:49 Yonik Seeley wrote: > On 6/29/07, Karen Loughran <[EMAIL PROTECTED]> wrote: > > Hi all, > > > > I have downloaded the latest Sol

solr-1.2.0 java.util.concurrent.RejectedExecutionException

2007-06-29 Thread Karen Loughran
]/msg02822.html Can anyone tell me what is causing this and how I can work around it ? Many thanks Karen Loughran

Re: org.apache.jasper.JasperException: Exception in JSP: /admin/_info.jsp:27"

2007-04-04 Thread Karen Loughran
t; > Hope this helps. > > -- j > > On 4/3/07, Karen Loughran <[EMAIL PROTECTED]> wrote: > > > > > > > > Hi all, > > > > I'm trying to install Solr in a Tomcat 5.5.17 container on Linux Fedora > > core 5. I receive "

org.apache.jasper.JasperException: Exception in JSP: /admin/_info.jsp:27"

2007-04-03 Thread Karen Loughran
Hi all, I'm trying to install Solr in a Tomcat 5.5.17 container on Linux Fedora core 5. I receive "org.apache.jasper.JasperException: Exception in JSP: /admin/_info.jsp:27". Full error given below. I'm following the instructions on the WIKI I have copied the solr.war (from apache-solr-1.1.0)