Re: Solr Scripts.conf Parsing Error

2007-04-12 Thread Bill Au
++ whoami ]][ root != solr + sudo -u $'solr\r' ./solr/bin/rsyncd-enable -V !udo: no passwd entry for solr + exit 1 ++ echo -ne '\033]0;[EMAIL PROTECTED]:/usr/local/apache-tomcat\007' Dan Bill Au wrote: What does your directory structure looks like? Have you tried running rsyncd-enable with bash

Re: Solr Scripts.conf Parsing Error

2007-04-11 Thread Bill Au
What does your directory structure looks like? Have you tried running rsyncd-enable with bash -x to see how/what $user is set? Bill On 4/9/07, realw5 [EMAIL PROTECTED] wrote: Hello, I'm having troubles getting replication to work using the supplied solr scripts. I've been doing alot of

Re: Controlling read/write access for replicated indexes

2007-04-09 Thread Bill Au
Solr's web.xml has a servlet-mapping which maps url-pattern /update/* to the SolrUpdateServlet. You can set up a security-constraint on that to protect against inadvertent updates. Bill On 3/28/07, Jeff Rodenburg [EMAIL PROTECTED] wrote: I'm curious what mechanisms everyone is using to

Re: Solr logo poll

2007-04-09 Thread Bill Au
A Bill On 4/9/07, Michael Kimsal [EMAIL PROTECTED] wrote: My wife votes for A. :) On 4/9/07, Nitin Borwankar [EMAIL PROTECTED] wrote: B Yonik Seeley wrote: Quick poll... Solr 2.1 release planning is underway, and a new logo may be a part of that. What form of logo do you prefer,

Re: JVM random crashes

2007-03-05 Thread Bill Au
Seems like this maybe a JVM bug: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6500147 http://forum.java.sun.com/thread.jspa?threadID=659990messageID=3876052 Have you tried using a different garbage collector? Bill On 3/3/07, Jed Reynolds [EMAIL PROTECTED] wrote: Yonik Seeley wrote:

Re: logging off

2007-03-05 Thread Bill Au
FYI, the admin page has a link, [LOGGING], that can be use to change Solr's logging on the fly. Bill On 3/4/07, Chris Hostetter [EMAIL PROTECTED] wrote: : Hi Brian, all you have to do is create a logging.properties file and : call this before starting up solr: : :

Re: Question re snapinstaller

2007-02-13 Thread Bill Au
Solr snapshots are created using hard links. The file is not deleted as long as there is 1 or more link to it. Bill On 2/13/07, Mike Klaas [EMAIL PROTECTED] wrote: On 2/13/07, Ken Krugler [EMAIL PROTECTED] wrote: A Lucene's IndexReader opens all index files it needs when it is

Re: Incremental replication...

2007-02-13 Thread Bill Au
FYI, additional information on replication is available in the Solr TWiki: http://wiki.apache.org/solr/CollectionDistribution Bill On 2/13/07, Bertrand Delacretaz [EMAIL PROTECTED] wrote: On 2/13/07, escher2k [EMAIL PROTECTED] wrote: ...Atleast from looking at the snapshooter script, it

Re: replication test problems

2006-10-31 Thread Bill Au
It looks like find running under zsh is the problem. In this case it does like the wildcard (*). I don't really know zsh so I will have to spend some time to investigate. Bill On 10/30/06, Yu-Hui Jin [EMAIL PROTECTED] wrote: Hi, Hoss, Thanks for the reply! For #2, I think I just need to

Re: I think i got right...

2006-10-03 Thread Bill Au
solar.war should be copied into the webapps directory, not lib. Bill On 10/3/06, Panayiotis Papadopoulos [EMAIL PROTECTED] wrote: Hi there again, sorry for bugging you once more... So i executed the bandled example and know i did the following in Tomcat once again: * Tomcat is set correctly

Re: When to commit?

2006-06-29 Thread Bill Au
Also keep in mind that changes and additions to the index is not visible by the clients until a commit has occured. Bill On 6/28/06, Erik Hatcher [EMAIL PROTECTED] wrote: On Jun 28, 2006, at 3:43 PM, UpAndGone wrote: Another question: Since a commit is expensive, it shouldn't be send after

Re: Distribution and Tomcat

2006-06-26 Thread Bill Au
I added what I considered a first draft into the solrconfig.xml wiki. Bill On 6/23/06, Chris Hostetter [EMAIL PROTECTED] wrote: : You can put a load balancer in front of the pool of slave servers for that. Solr does have some features designed to make Load Balancing easy * healthcheck

Re: Wildcard Query

2006-06-20 Thread Bill Au
If it is just a matter of matching lower case to upper case and upper case to lower case, one can simply use the LowercaseFilter. Bill On 6/20/06, Erik Hatcher [EMAIL PROTECTED] wrote: On Jun 20, 2006, at 6:07 AM, Pace Davis wrote: Ok, before I go start writing a new request handlerlet

Re: solrconfig environment variable

2006-05-24 Thread Bill Au
The admin page has a link, LOGGING, that will let you set the logging level on the fly: http://localhost:8983/solr/admin/logging.jsp Bill On 5/24/06, Chris Hostetter [EMAIL PROTECTED] wrote: : Talking about configuration and system properties: is it possible to set : the log level of Solr's

Re: Java heap space

2006-05-09 Thread Bill Au
FYI, I have just committed the a On 5/8/06, Bill Au [EMAIL PROTECTED] wrote: I was able to produce an OutOfMemoryError using Yonik's python script with Jetty 6. I was not able to do so with Jetty 5.1.11RC0, the latest stable version. So that's the version of Jetty with which I will downgrade

Re: Java heap space

2006-05-09 Thread Bill Au
Sorry, hit the wrong key before... FYI, I have just committed all the changes related to the Jetty downgrade into SVN. Let me know if you notice anything problems. Bill On 5/9/06, Bill Au [EMAIL PROTECTED] wrote: FYI, I have just committed the a On 5/8/06, Bill Au [EMAIL PROTECTED] wrote

Re: Java heap space

2006-05-05 Thread Bill Au
There seems to be a fair number of folks using the jetty with the example app as oppose to using Solr with their own appserver. So I think it is best to use a stable version of Jetty instead of the beta. If no one objects, I can go ahead and take care of this. Bill On 5/4/06, Yonik Seeley

Re: Solr is indexing XML only?

2006-04-26 Thread Bill Au
With Solr you can index anything Lucene can index since Solr uses Lucene under the cover. The input to Solr is in XML format. You will need to process that data you want to index (ie exclude certain files and remove HTML tags) and put them into Solr's input format. Bill On 4/26/06, David

Re: Does solr use Java hotspot client?

2006-04-03 Thread Bill Au
Solr is just a webapp that runs inside an appserver. So it is up to the user to tune the JVM for the appserver. Besides, client vs server mode, one can also tune the heap size and garbage collection, as well as many many other options of the JVM:

<    1   2   3