RE: Results driving me nuts!

2011-03-14 Thread cbennett
> -Original Message- > From: Ahmet Arslan [mailto:iori...@yahoo.com] > Sent: Sunday, March 13, 2011 6:25 PM > To: solr-user@lucene.apache.org; andy.ne...@gmail.com > Subject: Re: Results driving me nuts! > > > --- On Sun, 3/13/11, Andy Newby wrote: > > > From: Andy Newby > > Subject: R

RE: Filter Query, Filter Cache and Hit Ratio

2011-01-28 Thread cbennett
Ooops, I meant NOW/DAY > -Original Message- > From: cbenn...@job.com [mailto:cbenn...@job.com] > Sent: Friday, January 28, 2011 3:37 PM > To: solr-user@lucene.apache.org > Subject: RE: Filter Query, Filter Cache and Hit Ratio > > Hi, > > You've used NOW in the range query which will gi

RE: Filter Query, Filter Cache and Hit Ratio

2011-01-28 Thread cbennett
Hi, You've used NOW in the range query which will give a date/time accurate to the millisecond, try using NOW\DAY Colin. > -Original Message- > From: Renaud Delbru [mailto:renaud.del...@deri.org] > Sent: Friday, January 28, 2011 2:22 PM > To: solr-user@lucene.apache.org > Subject: Filter

RE: [POLL] Where do you get Lucene/Solr from? Maven? ASF Mirrors?

2011-01-18 Thread cbennett
> Where do you get your Lucene/Solr downloads from? > > [x] ASF Mirrors (linked in our release announcements or via the Lucene > website) > > [] Maven repository (whether you use Maven, Ant+Ivy, Buildr, etc.) > > [x] I/we build them from source via an SVN/Git checkout. > > [] Other (someone in

RE: Query question

2010-11-03 Thread cbennett
Another option is to override the default operator in the query. {!lucene q.op=OR}city:Chicago^10 +Romantic +View Colin. > -Original Message- > From: Mike Sokolov [mailto:soko...@ifactory.com] > Sent: Wednesday, November 03, 2010 9:42 AM > To: solr-user@lucene.apache.org > Cc: kenf_nc >

RE: Tomcat startup script

2010-06-08 Thread cbennett
The following should work on centos/redhat, don't forget to edit the paths, user, and java options for your environment. You can use chkconfig to add it to your startup. Note, this script assumes that the Solr webapp is configured using JNDI in a tomcat context fragment. If not you will need to ad

RE: DIH, Full-Import, DB and Performance.

2010-06-01 Thread cbennett
Performance is dependent on your server/data and the batchsize. To reduce the server load experiment with different batchsize settings. The higher the batch size the faster the import and the higher your SQL Server load will be. Try starting with a small batch and then gradually increasing it. Col

RE: DIH, Full-Import, DB and Performance.

2010-06-01 Thread cbennett
The settings and defaults will depend on which version of SQL Server you are using and which version of the JDBC driver. The default for resonseBuffering was changed to adaptive after version 1.2 so unless you are using 1.2 or earlier you don't need to set it to adaptive. Also if I remember corre

RE: Commit takes 1 to 2 minutes, CPU usage affects other apps

2010-05-04 Thread cbennett
Hi, This could also be caused by performing an optimize after the commit, or it could be caused by auto warming the caches, or a combination of both. If you are using the Data Import Handler the default for a delta import is commit and optimize, which caused us a similar problem except we were op

RE: Problem with DIH delta-import on JDBC

2010-04-29 Thread cbennett
Hi, It looks like the deltaImportQuery needs to be changed you are using dataimporter.delta.id which is not correct, you are selecting objected in the deltaQuery, so the deltaImportQuery should be using dataimporter.delta.objectid So try this: Colin. > -Original Message- > From: safl

RE: question about schemas

2009-12-02 Thread cbennett
Solr supports multi value fields so you could store one document per customer and have multi value fields for the product information. Colin. > -Original Message- > From: solr-user [mailto:solr-u...@hotmail.com] > Sent: Tuesday, December 01, 2009 6:27 PM > To: solr-user@lucene.apache.org

RE: Solr and Garbage Collection

2009-09-25 Thread cbennett
I would look at the JVM. Have you tried switching to the concurrent low pause collector ? Colin. -Original Message- From: Jonathan Ariel [mailto:ionat...@gmail.com] Sent: Friday, September 25, 2009 12:07 PM To: solr-user@lucene.apache.org Subject: Re: Solr and Garbage Collection You ar

RE: Solr and Garbage Collection

2009-09-25 Thread cbennett
Hi, Have you looked at tuning the garbage collection ? Take a look at the following articles http://www.lucidimagination.com/blog/2009/09/19/java-garbage-collection-boot -camp-draft/ http://java.sun.com/docs/hotspot/gc5.0/gc_tuning_5.html Changing to the concurrent or throughput collector shoul